Stupidly simple tool to convert csv-file to markdown table
 
 
Go to file
Anthony Axenov d7ffa94db5
Initial version 1.0.0
2022-02-16 17:49:22 +08:00
.vscode Initial version 1.0.0 2022-02-16 17:49:22 +08:00
.gitignore Initial version 1.0.0 2022-02-16 17:49:22 +08:00
LICENSE Initial version 1.0.0 2022-02-16 17:49:22 +08:00
Makefile Initial version 1.0.0 2022-02-16 17:49:22 +08:00
README.md Initial version 1.0.0 2022-02-16 17:49:22 +08:00
example.csv Initial version 1.0.0 2022-02-16 17:49:22 +08:00
go.mod Initial version 1.0.0 2022-02-16 17:49:22 +08:00
main.go Initial version 1.0.0 2022-02-16 17:49:22 +08:00

README.md

csv2md

Stupidly simple tool to convert csv-file to markdown table.

Outputs result in stdout.

Building:

make help

Usage:

csv2md example.csv > example.md # makes new file
csv2md example.csv | less       # view result using *pager*
...anything is possible with redirection and piping

IMPORTANT: input must be valid csv and whitespaces are allowed only between double-quotes.

Examples can be found here: https://people.sc.fsu.edu/~jburkardt/data/csv/csv.html