aboutsummaryrefslogtreecommitdiff
path: root/test/command/3432a.md
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2017-02-11 20:55:13 +0100
committerJohn MacFarlane <jgm@berkeley.edu>2017-02-11 20:55:13 +0100
commit1a23bc65b8e8a07d2578ddb0f3b842353ba81dcf (patch)
tree327ca46cde7be31cfb9913c6507240a15cb88639 /test/command/3432a.md
parent92a5445aa1a0f9d6ff76c2dd97fd742033ff84ce (diff)
downloadpandoc-1a23bc65b8e8a07d2578ddb0f3b842353ba81dcf.tar.gz
Fixed small bug in RST list parsing.
See #3432. Previously the parser didn't handle properly this case: * - a - b * - c - d
Diffstat (limited to 'test/command/3432a.md')
-rw-r--r--test/command/3432a.md19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/command/3432a.md b/test/command/3432a.md
new file mode 100644
index 000000000..5f25bce60
--- /dev/null
+++ b/test/command/3432a.md
@@ -0,0 +1,19 @@
+```
+% pandoc -f rst
+* - a
+ - b
+* - c
+ - d
+^D
+<ul>
+<li><ul>
+<li>a</li>
+<li>b</li>
+</ul></li>
+<li><ul>
+<li>c</li>
+<li>d</li>
+</ul></li>
+</ul>
+```
+