f637ccd3bf
Closes #8110.
41 lines
554 B
Markdown
41 lines
554 B
Markdown
```
|
|
% 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>
|
|
|
|
```
|