aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJohn MacFarlane <[email protected]>2025-05-15 13:28:18 -0700
committerJohn MacFarlane <[email protected]>2025-05-15 13:28:18 -0700
commit1f290db770ac58dcd1fca7676e9951a29be7e0a5 (patch)
tree7078b5a405bd60fd028a638c074ce59f8edca1a6 /test
parentcf795b0cf5bb76ced10578385e82acc6e327efcb (diff)
Add a failing test for #10848 grid table.
Diffstat (limited to 'test')
-rw-r--r--test/command/10848.md24
1 files changed, 24 insertions, 0 deletions
diff --git a/test/command/10848.md b/test/command/10848.md
new file mode 100644
index 000000000..a9ef684d4
--- /dev/null
+++ b/test/command/10848.md
@@ -0,0 +1,24 @@
+```
+% pandoc -f html -t markdown
+<table>
+<tr>
+<td colspan="3">A</td>
+</tr>
+<tr>
+<td>C</td>
+<td colspan="2">B</td>
+</tr>
+<tr>
+<td colspan="2">D</td>
+<td>E</td>
+</tr>
+</table>
+^D
++-----------+
+| A |
++---+-------+
+| C | B |
++---+---+---+
+| D | E |
++-------+---+
+```