Convert markdown tables to csvs!
pip install mdtable2csv==0.1.0
Use the following command to convert <filename>.md
to <filename>.csv
:
mdtable2csv <filename>.md
And then you will see a <filename>.csv
in the same folder.
from mdtable2csv import mdtable2csv
mdtable2csv("temp.md")
And then you will see a <filename>.csv
in the same folder.
# table.md :
First Header | Second Header
------------- | -------------
Content Cell | Content Cell
Content Cell | Content Cell
$ mdtable2csv table.md
# table.csv :
First Header,Second Header
Content Cell,Content Cell
Content Cell,Content Cell
# abc.md :
| | a | b | c |
|---|----|----|----|
| 1 | a1 | b1 | c1 |
| 2 | a2 | b2 | c2 |
| 3 | a3 | b3 | c3 |
$ mdtable2csv abc.md
# abc.csv :
,a,b,c
1,a1,b1,c1
2,a2,b2,c2
3,a3,b3,c3
Please give me a star if you find this tool useful, Thank you.