1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
``` % 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> ```