0.0.2 • Published 9 years ago

jso2jade v0.0.2

Weekly downloads
1
License
ISC
Repository
github
Last release
9 years ago

jso2jade

prepare some js object and render as jade template to html

Install

npm install jso2jade --save

Usage

var jso2jade = require('jso2jade');
var jade = require('jade');

var arr = [{
  'div.content': [{
    'h3': 'Hello, ' + user.name
    },
    'p Congratulations for you!',
    'p You win more than life on Earth',
    { 
      'div.conditions': {
        'h5.attention': 'Attention',
        'p': 'New conditions',
        'div' :
        [
          'hr',
          'br'
        ]
      }
    }
    ]
  },
  'div.contacts Send me email'];


var html = jade.render(jso2jade(arr));

console.log(html);