CSV tables for markdown

Tables are good in markdown, but we should also support CSV data

Normal github tables

| Tables        | Are           | Cool  |
| ------------- |:-------------:| -----:|
| col 3 is      | right-aligned | $1600 |
| col 2 is      | centered      |   $12 |
| zebra stripes | are neat      |    $1 |

Proposed CSV addition:

| Tables        | Are           | Cool  |
| ------------- |:-------------:| -----:|
 col 3 is      , right-aligned , $1600 
 col 2 is      , centered      ,   $12 
 zebra stripes , are neat      ,    $1 

This is part of a normal paragraph, the space above indicates that the csv data has finished. 

As you can see, it is drastically easier to edit.

1 Like

As @mex said in reply to a different thread

Thanks, noted and commented.