Skip to content

FloThinksPi-Forks/json2mdtbl

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

json2mdtbl

JSON to Markdown Table

Installation

Download from https://github.com/tkuchiki/json2mdtbl/releases

Usage

$ 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   |

Releases

No releases published

Packages

No packages published

Languages

  • Go 100.0%