From 68c5b997fcf85da985f590ea6796b640151f67c2 Mon Sep 17 00:00:00 2001 From: Dave Machado Date: Fri, 22 Dec 2017 20:11:25 -0500 Subject: [PATCH] Update build script to use new converter --- build/build.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build/build.sh b/build/build.sh index 8143315e..0f23d630 100755 --- a/build/build.sh +++ b/build/build.sh @@ -3,7 +3,6 @@ # create json directory if not already present mkdir -p ../json # parse API README and print (minified) JSON to stdout, redirect to /json -node condenseMd.js ../README.md > single_table.md -node md2json.js single_table.md > ../json/entries.min.json +./md2json.py ../README.md > ../json/entries.min.json # beautify the previously created JSON file, redirect to /json python -m json.tool ../json/entries.min.json > ../json/entries.json