summaryrefslogtreecommitdiff
path: root/test/command/2834.md
diff options
context:
space:
mode:
Diffstat (limited to 'test/command/2834.md')
-rw-r--r--test/command/2834.md29
1 files changed, 29 insertions, 0 deletions
diff --git a/test/command/2834.md b/test/command/2834.md
new file mode 100644
index 000000000..850c39254
--- /dev/null
+++ b/test/command/2834.md
@@ -0,0 +1,29 @@
+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 | |
+| | ----------- | |
+| +------------------------------------------------------------------+ |
++-----------------------------------------------------------------------+
+```