aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJohn MacFarlane <[email protected]>2025-05-17 09:59:17 -0700
committerJohn MacFarlane <[email protected]>2025-05-17 09:59:17 -0700
commitfbeadcd0baae29decc19d2ac42d8a40fc974b868 (patch)
tree5e5dfb281d31c8d32873cb310df69cccb1a50ea3 /test
parentcc4ccb07e39a90dc0ebcf87e50e95c9abfe62499 (diff)
gridTables: properly handle columns with all empty cells.
See #10848.
Diffstat (limited to 'test')
-rw-r--r--test/command/10848.md23
1 files changed, 23 insertions, 0 deletions
diff --git a/test/command/10848.md b/test/command/10848.md
index 5ac700103..102febab4 100644
--- a/test/command/10848.md
+++ b/test/command/10848.md
@@ -57,3 +57,26 @@
| | K |
+---+---------------+
```
+
+```
+% pandoc -f html -t markdown-simple_tables-multiline_tables-pipe_tables
+<table>
+ <tbody>
+ <tr>
+ <td>a</td>
+ <td></td>
+ </tr>
+ <tr>
+ <td></td>
+ <td></td>
+ </tr>
+ </tbody>
+</table>
+^D
++---+---+
+| a | |
++---+---+
+| | |
++---+---+
+```
+