mplewis / csvtomd

📝📊 Convert your CSV files into Markdown tables.
MIT License
655 stars 90 forks source link

support delimiter of tab '\t' #19

Closed infinite-Joy closed 5 years ago

infinite-Joy commented 7 years ago

Support the entry of delimiter of TAB. The user should be able to run the below command

csvtomd mycsv.csv -d '\t'

splaisan commented 6 years ago

you can do it with -d 'Tab' to get Tab you need to type Ctrl + V together then Tab alone I made it a custom bash function (into ~/.bash_functions sourced in my .bashrc) to ease the process (the space between '' is a tab)

tsvtomd () 
{ 
    csvtomd -d '        '
}

great tool by the way, thanks @mplewis

mplewis commented 5 years ago

Hi @infinite-Joy and @splaisan,

Thanks so much for posting a workaround!

I am sorry for taking so long to get back to this issue. At this time I'm not continuing development on the Python version of this tool.

I'm moving work to the following JS projects:

I'm happy to point to your projects if you decide to take over development on the Python version! Just let me know.