Initial commit
[yaffs-website] / node_modules / archy / examples / multi_line.js
1 var archy = require('../');
2
3 var s = archy({
4   label : 'beep\none\ntwo',
5   nodes : [
6     'ity',
7     {
8       label : 'boop',
9       nodes : [
10         {
11           label : 'o_O\nwheee',
12           nodes : [
13             {
14               label : 'oh',
15               nodes : [ 'hello', 'puny\nmeat' ]
16             },
17             'creature'
18           ]
19         },
20         'party\ntime!'
21       ]
22     }
23   ]
24 });
25 console.log(s);