aboutsummaryrefslogtreecommitdiff
path: root/test/command
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2018-11-13 14:49:12 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2018-11-13 14:49:12 -0800
commit1cfdd3662f667f8119e441b60ba8d718b75f90ca (patch)
tree6122b3ea2a7ba6ef57bf5880ff92fa78bc085c89 /test/command
parent8074a766d68babcbf75c42cc8dc2a3ea3627fcf3 (diff)
downloadpandoc-1cfdd3662f667f8119e441b60ba8d718b75f90ca.tar.gz
HTML reader: allow thead containing a row with td rather than th.
See #5014. Note that this doesn't address the original issue in #5014, only an unrelated side-issue.
Diffstat (limited to 'test/command')
-rw-r--r--test/command/5014.md17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/command/5014.md b/test/command/5014.md
new file mode 100644
index 000000000..73be6ec46
--- /dev/null
+++ b/test/command/5014.md
@@ -0,0 +1,17 @@
+```
+% pandoc -f html -t native
+<table>
+ <thead>
+ <tr>
+ <td>Name</td>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>Accounts</td>
+ </tr>
+ </tbody>
+</table>
+^D
+
+```