packages feed

pandoc-3.10: test/command/8110.md

```
% 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>
<th><p>Header text</p></th>
<th><p>Header text</p></th>
<th><p>Header text</p></th>
</tr>
</thead>
<tbody>
<tr>
<td><p>Example</p></td>
<td><p>Example</p></td>
<td><p>Example</p></td>
</tr>
<tr>
<td><p>Example</p></td>
<td><p>Example</p></td>
<td><p>Example</p></td>
</tr>
</tbody>
</table>

```