diff options
Diffstat (limited to 'test/command')
| -rw-r--r-- | test/command/8307.md | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/test/command/8307.md b/test/command/8307.md new file mode 100644 index 000000000..d211d7003 --- /dev/null +++ b/test/command/8307.md @@ -0,0 +1,49 @@ +``` +% pandoc -t commonmark -f html +<table> +<tbody> +<tr> +<td title="this + + +breaks">hello</td> +</tr> +</tbody> +</table> +^D +<table> +<tbody> +<tr class="odd"> +<td title="this + +breaks">hello</td> +</tr> +</tbody> +</table> +``` + +```` +% pandoc -t commonmark -f markdown +``` {=html} +<table> +<tbody> +<tr> +<td title="this + + +breaks">hello</td> +</tr> +</tbody> +</table> +``` +^D +<table> +<tbody> +<tr> +<td title="this + +breaks">hello</td> +</tr> +</tbody> +</table> +```` |
