blob: 8522567475f85f629d95b0378b8f101651a80cd2 (
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
|
```
% 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>
^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
```
|