Skip to content

mitakeck/gron-mdt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

gron-mdt

gron-mdt; make markdown-table greppable. inspired by https://github.com/tomnomnom/gron

setup

please download build file from release page. https://github.com/mitakeck/gron-mdt/releases/latest

usage

for sample

Name Quantity
Apple 3
Egg 12
$ curl -s https://raw.githubusercontent.com/mitakeck/gron-mdt/master/README.md | gron-mdt
json = {};
json.Name = {};
json.Apple = {};
json.Apple.Name = "Apple";
json.Apple.Quantity = 3;
json.Egg = {};
json.Egg.Name = "Egg";
json.Egg.Quantity = 12;
$