Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 361 Bytes

README.md

File metadata and controls

19 lines (15 loc) · 361 Bytes

coffee-jade-wrapper

simple template engine based on jade and jquery

Installation

npm install coffee-jade-wrapper

Usage

{j} = require 'coffee-jade-wrapper'

doc = j('html')
        .appendj('body text of body')
            .appendj('p some text')
                .appendj('p some text2')
console.log doc[0].toString()