aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJohn MacFarlane <[email protected]>2023-10-19 11:06:40 -0700
committerJohn MacFarlane <[email protected]>2023-10-19 11:07:22 -0700
commit0fdac4984b61de9de07f730ea071ee2bb9f1076c (patch)
tree7eada91460ff3f762955e1f35899cf1bfbf865f9 /test
parent1529ff45e665e21623127561e7b8ce576b56de5c (diff)
HTML reader: allow th to close td and vice versa.
Closes #9090.
Diffstat (limited to 'test')
-rw-r--r--test/command/9090.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/command/9090.md b/test/command/9090.md
new file mode 100644
index 000000000..a2c94b998
--- /dev/null
+++ b/test/command/9090.md
@@ -0,0 +1,15 @@
+```
+% pandoc -f html -t gfm
+<table>
+ <tr>
+ <th>invalid head cell</td>
+ </tr>
+ <tr>
+ <td>body cell</td>
+ </tr>
+</table>
+^D
+| invalid head cell |
+|-------------------|
+| body cell |
+```