mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-02 05:35:38 +00:00
19 lines
218 B
Markdown
19 lines
218 B
Markdown
```
|
|
% pandoc -f markdown -t mediawiki
|
|
| Column1 | Column2 | Column3 |
|
|
| ------- | ------- | ------- |
|
|
| text | | text |
|
|
^D
|
|
{| class="wikitable"
|
|
|-
|
|
! Column1
|
|
! Column2
|
|
! Column3
|
|
|-
|
|
| text
|
|
|
|
|
| text
|
|
|}
|
|
|
|
```
|