mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-02 05:35:38 +00:00
24 lines
279 B
Markdown
24 lines
279 B
Markdown
```
|
|
% pandoc -f mediawiki
|
|
{| class="wikitable"
|
|
|+ Overview of basic table markup
|
|
! Key
|
|
|-
|
|
| Value
|
|
|}
|
|
^D
|
|
<table>
|
|
<caption>Overview of basic table markup</caption>
|
|
<thead>
|
|
<tr>
|
|
<th><p>Key</p></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td><p>Value</p></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
```
|