commit | author | age
|
2207d6
|
1 |
Here's a simple block: |
W |
2 |
|
|
3 |
<div> |
|
4 |
foo |
|
5 |
</div> |
|
6 |
|
|
7 |
This should be a code block, though: |
|
8 |
|
|
9 |
<div> |
|
10 |
foo |
|
11 |
</div> |
|
12 |
|
|
13 |
As should this: |
|
14 |
|
|
15 |
<div>foo</div> |
|
16 |
|
|
17 |
Now, nested: |
|
18 |
|
|
19 |
<div> |
|
20 |
<div> |
|
21 |
<div> |
|
22 |
foo |
|
23 |
</div> |
|
24 |
</div> |
|
25 |
</div> |
|
26 |
|
|
27 |
This should just be an HTML comment: |
|
28 |
|
|
29 |
<!-- Comment --> |
|
30 |
|
|
31 |
Multiline: |
|
32 |
|
|
33 |
<!-- |
|
34 |
Blah |
|
35 |
Blah |
|
36 |
--> |
|
37 |
|
|
38 |
Code block: |
|
39 |
|
|
40 |
<!-- Comment --> |
|
41 |
|
|
42 |
Just plain comment, with trailing spaces on the line: |
|
43 |
|
|
44 |
<!-- foo --> |
|
45 |
|
|
46 |
Code: |
|
47 |
|
|
48 |
<hr /> |
|
49 |
|
|
50 |
Hr's: |
|
51 |
|
|
52 |
<hr> |
|
53 |
|
|
54 |
<hr/> |
|
55 |
|
|
56 |
<hr /> |
|
57 |
|
|
58 |
<hr> |
|
59 |
|
|
60 |
<hr/> |
|
61 |
|
|
62 |
<hr /> |
|
63 |
|
|
64 |
<hr class="foo" id="bar" /> |
|
65 |
|
|
66 |
<hr class="foo" id="bar"/> |
|
67 |
|
|
68 |
<hr class="foo" id="bar" > |
|
69 |
|