• File: multi_line.js
  • Full Path: /home6/laduliya/test.mydthpay.com/node_modules/npm/node_modules/archy/examples/multi_line.js
  • Date Modified: 10/26/1985 11:45 AM
  • File size: 414 bytes
  • MIME-type: text/plain
  • Charset: utf-8
var archy = require('../');

var s = archy({
  label : 'beep\none\ntwo',
  nodes : [
    'ity',
    {
      label : 'boop',
      nodes : [
        {
          label : 'o_O\nwheee',
          nodes : [
            {
              label : 'oh',
              nodes : [ 'hello', 'puny\nmeat' ]
            },
            'creature'
          ]
        },
        'party\ntime!'
      ]
    }
  ]
});
console.log(s);