pull/1/head
Anthony Axenov 2022-02-17 11:41:04 +08:00
parent d7ffa94db5
commit 1dbd735d93
Signed by: anthony
GPG Key ID: EA9EC32FF7CCD4EC
1 changed files with 16 additions and 9 deletions

View File

@ -4,20 +4,27 @@ Stupidly simple tool to convert csv-file to [markdown](https://spec-md.com/) tab
Outputs result in stdout.
Building:
## Usage
```shell
make help
```
csv2md example.csv > example.md # save result to new file
csv2md example.csv | less # view result using pager
Usage:
```shell
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.
> **IMPORTANT:**
> * input file must be valid csv
> * whitespaces allowed only between double-quotes
Examples can be found here: https://people.sc.fsu.edu/~jburkardt/data/csv/csv.html
## Compilation
1) [Install go](https://go.dev/learn/).
2) Clone this repo.
3) Run `make help` to get help or `go run . <csv_path>` to build and run temporary binary.
## License
[MIT](LICENSE)