1 | <!DOCTYPE html>
|
2 | <html>
|
3 | <!-- comment -->
|
4 |
|
5 | <head>
|
6 | <title>Pulp Testdata</title>
|
7 |
|
8 | </head>
|
9 |
|
10 | <body>
|
11 |
|
12 | <!--
|
13 | Nested
|
14 | <?
|
15 | directive
|
16 | ?>
|
17 | -->
|
18 |
|
19 | <?
|
20 | directive
|
21 | ?>
|
22 |
|
23 | <p>
|
24 | <span id="myid">my span</span>
|
25 | <a href="/page.html?x=42&y=43">Link</a>
|
26 |
|
27 | <a href="$xref:bash">Link</a>
|
28 |
|
29 | <!-- HTML is pretty liberal about unquoted strings -->
|
30 | <a href=$xref:bash>Link</a>
|
31 |
|
32 | <a href="$blog-tag:oil-release">Link</a>
|
33 |
|
34 | </p>
|
35 |
|
36 | <p class="myclass">
|
37 | this & that and mu = μ
|
38 | </p>
|
39 |
|
40 | <p>
|
41 | <not a tag>
|
42 | </p>
|
43 |
|
44 | <p>
|
45 | line break<br/>
|
46 | line break<br/>
|
47 | </p>
|
48 |
|
49 | <pre><code class="language-sh-prompt">$ echo one
|
50 | one
|
51 | bash$ echo two
|
52 | two
|
53 | ~/git/oilshell/oil$ echo three
|
54 | three
|
55 | </code></pre>
|
56 |
|
57 | <hr/>
|
58 |
|
59 | </body>
|
60 | </html>
|