diff options
author | John MacFarlane <jgm@berkeley.edu> | 2018-11-13 14:49:12 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2018-11-13 14:49:12 -0800 |
commit | 1cfdd3662f667f8119e441b60ba8d718b75f90ca (patch) | |
tree | 6122b3ea2a7ba6ef57bf5880ff92fa78bc085c89 /test | |
parent | 8074a766d68babcbf75c42cc8dc2a3ea3627fcf3 (diff) | |
download | pandoc-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')
-rw-r--r-- | test/command/5014.md | 17 |
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 + +``` |