diff options
Diffstat (limited to 'test/command')
| -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> + +``` |
