jdkelley/csvtomd
A tool for converting csv to markdown table.
70
This tool converts a CSV table into a markdown formatted table.
After installing, this will work by running csvtomd <path to csv file>
At the moment format of the csv file should be like in example/test.csv
.
Clone down the repository and install with:
./csvtomd.sh install
After this, the command csvtomd
will be in your path and you can use it as csvtomd example/test.csv
.
To uninstall, run
csvtomd uninstall
csvtomd
is available in a Docker container on dockerhub.
There is a catch using the tool this way-you need copy the csv file into a directory named workdir
in your current directory. I use this by running docker run -v workdir:/script jdkelley/csvtomd fileToConvert.csv
.
This tool is released under the MIT License.
docker pull jdkelley/csvtomd