summaryrefslogtreecommitdiff
path: root/test/command/2834.md
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2017-03-01 17:41:14 +0100
committerJohn MacFarlane <jgm@berkeley.edu>2017-03-01 17:41:14 +0100
commitea619bfcb4dd58f4ea0f3b02a61dc734180b79b2 (patch)
tree0782eddec32077b2c6f2ee141a99020835d2577e /test/command/2834.md
parent8b641f38ca3f0392bd3da5a084d025265ed3e50b (diff)
Markdown writer: Fixed grid tables embedded in grid tables.
Closes #2834.
Diffstat (limited to 'test/command/2834.md')
-rw-r--r--test/command/2834.md32
1 files changed, 32 insertions, 0 deletions
diff --git a/test/command/2834.md b/test/command/2834.md
new file mode 100644
index 000000000..e4c2b3da5
--- /dev/null
+++ b/test/command/2834.md
@@ -0,0 +1,32 @@
+Nested grid tables.
+```
+% pandoc -f html -t markdown --columns=72
+<table>
+ <tr>
+ <td>
+ <table>
+ <tr>
+ <td>
+ <table>
+ <tr>
+ <td>some text</td>
+ </tr>
+ </table>
+ </td>
+ </tr>
+ </table>
+ </td>
+ </tr>
+</table>
+^D
++-----------------------------------------------------------------------+
+| +------------------------------------------------------------------+ |
+| | ----------- | |
+| | some text | |
+| | ----------- | |
+| +------------------------------------------------------------------+ |
++-----------------------------------------------------------------------+
+
+
+
+```