blob: 585d3556cd0506856a8f346337d41f4b02fc7668 (
plain)
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
|
```
% pandoc -f html -t asciidoc
<ul>
<li>
<p>Paragraph one</p>
<p>Paragraph two to force a list continuation</p>
<ul>
<li>First nested</li>
<li>Second nested</li>
</ul>
</li>
</ul>
<p>How about ordered lists?</p>
<ol>
<li>
<p>Paragraph one</p>
<p>Paragraph two to force a list continuation</p>
<ol><li>Nested item</li></ol>
</li>
</ol>
<p>With non-default attributes:</p>
<ol>
<li>
<p>Paragraph one</p>
<p>Paragraph two to force a list continuation</p>
<ol start=5><li>Nested item</li></ol>
</li>
</ol>
^D
* Paragraph one
+
Paragraph two to force a list continuation
** First nested
** Second nested
How about ordered lists?
. Paragraph one
+
Paragraph two to force a list continuation
.. Nested item
With non-default attributes:
. Paragraph one
+
Paragraph two to force a list continuation
[start=5]
.. Nested item
```
|