samizdatco / arbor

a graph visualization library using web workers and jQuery
http://arborjs.org
2.66k stars 633 forks source link

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

Open sente opened 12 years ago

sente commented 12 years ago

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