Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/beenotung/csv-to-markdown
cli tools to convert csv and tsc data into markdown table
https://github.com/beenotung/csv-to-markdown
cli csv
Last synced: 29 days ago
JSON representation
cli tools to convert csv and tsc data into markdown table
- Host: GitHub
- URL: https://github.com/beenotung/csv-to-markdown
- Owner: beenotung
- License: bsd-2-clause
- Created: 2021-05-14T06:35:22.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-05-14T17:53:40.000Z (over 3 years ago)
- Last Synced: 2024-12-14T14:47:00.591Z (about 2 months ago)
- Topics: cli, csv
- Language: JavaScript
- Homepage:
- Size: 9.77 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# csv-to-markdown
cli tools to convert csv and tsc data into markdown table[![npm Package Version](https://img.shields.io/npm/v/csv-to-markdown.svg?maxAge=2592000)](https://www.npmjs.com/package/csv-to-markdown)
## Glossary
csv: Comma-separated values
tsv: Tab-separated values
markdown: the markup language used in README.md on github, gitlab, bitbucket, e.t.c.
## cli tools
- [x] csv-to-markdown
- [x] tsv-to-markdown
- [x] csv-to-tsv
- [x] tsv-to-csv
- [ ] markdown-to-csv
- [ ] markdown-to-tsv## Installation
```bash
> npm i -g csv-to-markdown
```## Usage Example
```bash
# read from file, show to console
csv-to-markdown example/data.csv# read from pipe, write to pipe
cat example/data.csv | csv-to-markdown | xclip -sel clipboard# read from file, save to file
tsv-to-markdown < data.tsv > example/output.md
```## License
This is free and open-source software (FOSS) with
[BSD-2-Clause License](./LICENSE)