aboutsummaryrefslogtreecommitdiff
path: root/test/command/3499.md
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2017-03-08 12:28:13 +0100
committerJohn MacFarlane <jgm@berkeley.edu>2017-03-08 12:28:13 +0100
commit410991ec6e3615613db5d7f58f8ec8221373d5fd (patch)
tree39c41020ef5400654c1451403c9badf8386d87a3 /test/command/3499.md
parent2c67101c7db845201c901775bd4be27b17391856 (diff)
downloadpandoc-410991ec6e3615613db5d7f58f8ec8221373d5fd.tar.gz
Org reader: don't allow tables inside list items.
Closes #3499.
Diffstat (limited to 'test/command/3499.md')
-rw-r--r--test/command/3499.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/command/3499.md b/test/command/3499.md
new file mode 100644
index 000000000..e1c9093c4
--- /dev/null
+++ b/test/command/3499.md
@@ -0,0 +1,9 @@
+Org-mode tables can't go in lists:
+```
+% pandoc -f org
+- |something|
+^D
+<ul>
+<li>|something|</li>
+</ul>
+```