arbor icon indicating copy to clipboard operation
arbor copied to clipboard

Formatted (pretty-printed) the demo .json data to make them more human readable

Open sente opened this issue 12 years ago • 0 comments

All I changed was the formatting of the demo .json data.

I did so by simply running this bash loop within demos/atlas/maps/ and demos/halfviz/library/ directories:

for i in *.json;
do
    echo $i;
    json-tool $i > $i.new;
    mv $i.new $i;
done

sente avatar Jul 04 '12 06:07 sente