I write my Markdown tables usually in the Pipe-Table syntax (used by Pandoc, multimarkdown, php extra and others). Here an example:
| fruit | price |
|--------|------:|
| apple | 2.05 |
| pear | 1.37 |
| orange | 3.09 |
In a Confluence wiki I can use Markdown (with some crutches), but the tables have to be in a (to me) odd format similar to Markdown:
||fruit||price||
|apple|2.05|
|pear|1.37|
|orange|3.09|
Which command line tool can I use to convert the former into the latter?
PS: I cannot go to HTML instead of the Double-Pipe-Header-Tables because the Confluence instance I am targeting has HTML Marco not enabled.