diff options
Diffstat (limited to 'test/command/11006.md')
| -rw-r--r-- | test/command/11006.md | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/test/command/11006.md b/test/command/11006.md new file mode 100644 index 000000000..852256747 --- /dev/null +++ b/test/command/11006.md @@ -0,0 +1,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 +``` |
