OILS / lazylex / testdata.html View on Github | oilshell.org

60 lines, 44 significant
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&amp;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 &amp; that and mu = &#x03bc;
38 </p>
39
40 <p>
41 &lt;not a tag&gt;
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
50one
51bash$ echo two
52two
53~/git/oilshell/oil$ echo three
54three
55 </code></pre>
56
57 <hr/>
58
59 </body>
60</html>