diff options
author | Albert Krewinkel <albert@zeitkraut.de> | 2017-03-08 15:36:48 +0100 |
---|---|---|
committer | Albert Krewinkel <albert@zeitkraut.de> | 2017-03-08 15:45:00 +0100 |
commit | c91f168fc93f22b8c281fb2933052ff6da63d47b (patch) | |
tree | d4311e950934ba26728ec60def6d236c8e4511da /test | |
parent | 5487190d6981c442a27b3129523d6d48e3633c20 (diff) | |
download | pandoc-c91f168fc93f22b8c281fb2933052ff6da63d47b.tar.gz |
Org reader: disallow tables on list marker lines
Fixes: #3499
Diffstat (limited to 'test')
-rw-r--r-- | test/command/3499.md | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/test/command/3499.md b/test/command/3499.md index e1c9093c4..ba9f03589 100644 --- a/test/command/3499.md +++ b/test/command/3499.md @@ -1,9 +1,18 @@ -Org-mode tables can't go in lists: +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> ``` |