https://github.com/tkuchiki/json2mdtbl
JSON to Markdown Table
https://github.com/tkuchiki/json2mdtbl
Last synced: 2 months ago
JSON representation
JSON to Markdown Table
- Host: GitHub
- URL: https://github.com/tkuchiki/json2mdtbl
- Owner: tkuchiki
- License: mit
- Created: 2019-07-09T00:46:14.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-07-09T04:34:12.000Z (almost 6 years ago)
- Last Synced: 2025-01-25T09:11:05.565Z (4 months ago)
- Language: Go
- Size: 2.93 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# json2mdtbl
JSON to Markdown Table
# Installation
Download from https://github.com/tkuchiki/json2mdtbl/releases
# Usage
```console
$ echo -e '[{"name": "alice", "foo":"bar"},{"name":"bob", "foo":"baz"}]' | ./json2mdtbl
| FOO | NAME |
|-----|-------|
| bar | alice |
| baz | bob |$ echo -e '{"name": "alice", "foo":"bar"}\n{"name":"bob", "foo":"baz"}' | ./json2mdtbl
| FOO | NAME |
|-----|-------|
| bar | alice |
| baz | bob |
```