summaryrefslogtreecommitdiff
path: root/test/command/3499.md
diff options
context:
space:
mode:
Diffstat (limited to 'test/command/3499.md')
-rw-r--r--test/command/3499.md18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/command/3499.md b/test/command/3499.md
new file mode 100644
index 000000000..ba9f03589
--- /dev/null
+++ b/test/command/3499.md
@@ -0,0 +1,18 @@
+Org-mode tables can't be on the same line as list markers:
+```
+% pandoc -f org
+- |something|
+-
+ |else|
+^D
+<ul>
+<li>|something|</li>
+<li><table>
+<tbody>
+<tr class="odd">
+<td>else</td>
+</tr>
+</tbody>
+</table></li>
+</ul>
+```