Skip to content
This repository has been archived by the owner on Jan 23, 2021. It is now read-only.

Latest commit

 

History

History
45 lines (24 loc) · 1.18 KB

readme.md

File metadata and controls

45 lines (24 loc) · 1.18 KB

Deprecated

The project was renamed to Pug. Use broccoli-pug instead.


broccoli-jade Build Status

Compile Jade templates

Issues with the output should be reported on the Jade issue tracker.

Install

$ npm install --save-dev broccoli-jade

Usage

var jade = require('broccoli-jade');
tree = jade(tree, options);

A note about include paths

Include paths are resolved relative to the root of the tree, not to the Jade file itself. There are however workarounds to this, for example by using broccoli-static-compiler - here's an example.

API

jade(tree, [options])

options

See the Jade options.

In addition you can pass in options.data that will be used as locals for your HTML compilation.

License

MIT © Sindre Sorhus