File: block.html

package info (click to toggle)
libtext-wikicreole-perl 0.05-2
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 152 kB
  • ctags: 17
  • sloc: perl: 713; makefile: 43
file content (131 lines) | stat: -rw-r--r-- 1,816 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<ul>
    <li>list at start of file</li>
<ul>
    <li>second level</li>
<ol>
    <li>third level numbered list</li>
    <li>second one</li>
</ol>
    <li>back to second level</li>
</ul>
</ul>
<p>Just a regular paragraph</p>

<ul>
    <li>interrupted by a list</li>
</ul>
<p>another 
paragraph</p>

<table>
    <tr>
        <td>interrupted by</td>
        <td>a table</td>
    </tr>
    <tr>
        <td>r2c1</td>
        <td>r2c2</td>
    </tr>
</table>

<p>another paragraph</p>

<h1>interrupted by a heading</h1>

<ul>
    <li>how about a list</li>
</ul>
<h6>interrupted by a small heading</h6>

<ul>
    <li>this is a new list</li>
</ul>
<table>
    <tr>
        <td>tables</td>
        <td>can be interrupted</td>
    </tr>
</table>

<p>by paragraphs</p>

<table>
    <tr>
        <td>tables</td>
        <td>can be interrupted</td>
    </tr>
</table>

<ol>
    <li>by lists</li>
</ol>
<table>
    <tr>
        <td>tables</td>
        <td>can be interrupted</td>
    </tr>
</table>

<dl>
  <dt>by anything</dt>
    <dd>that's not a table</dd>
</dl>
<ul>
    <li>a list</li>
    <li>can be interrupted</li>
</ul>
<div style="margin-left: 2em"><p> by an indented paragraph</p>

</div>
<ul>
    <li>a list</li>
    <li>can be interrupted</li>
</ul>
<pre>
  by a nowiki block
</pre>

<p>a paragraph can
be interrupted</p>

<pre>
  by a nowiki block
</pre>

<dl>
  <dt>any block can be</dt>
    <dd></dd>
    <dd>interrupted</dd>
</dl>
<pre>
  by a nowiki block
</pre>

<p>horizontal lines</p>

<hr />

<p>also interrupt other blocks</p>

<pre>
-----
but not nowiki
</pre>

<ul>
    <li>see, lists</li>
</ul>
<hr />

<ul>
    <li>are interrupted by lines also</li>
</ul>
<dl>
  <dt>crazy stuff happens</dt>
    <dd></dd>
</dl>
<hr />

<div style="margin-left: 2em"><p> when a line splits a definition list</p>

</div>