diff options
| author | John MacFarlane <[email protected]> | 2022-07-28 11:27:27 -0700 |
|---|---|---|
| committer | John MacFarlane <[email protected]> | 2022-07-28 11:28:02 -0700 |
| commit | f637ccd3bf9c955b8e92e6f759556bfcb8a33d83 (patch) | |
| tree | fb9f4327b412e69db393b4670252ccacc4a45c20 /test | |
| parent | 5c3423f2e2b441f9fe630538906b5fc1436e04f3 (diff) | |
MediaWiki reader: allow HTML comment after row start.
Closes #8110.
Diffstat (limited to 'test')
| -rw-r--r-- | test/command/8110.md | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/test/command/8110.md b/test/command/8110.md new file mode 100644 index 000000000..b19d9511c --- /dev/null +++ b/test/command/8110.md @@ -0,0 +1,41 @@ +``` +% pandoc -f mediawiki +{| class="wikitable" +! Header text +! Header text +! Header text + +|- +| Example +| Example +| Example + +|- <!-- This is a comment --> +| Example +| Example +| Example +|} +^D +<table> +<thead> +<tr class="header"> +<th><p>Header text</p></th> +<th><p>Header text</p></th> +<th><p>Header text</p></th> +</tr> +</thead> +<tbody> +<tr class="odd"> +<td><p>Example</p></td> +<td><p>Example</p></td> +<td><p>Example</p></td> +</tr> +<tr class="even"> +<td><p>Example</p></td> +<td><p>Example</p></td> +<td><p>Example</p></td> +</tr> +</tbody> +</table> + +``` |
