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

sindresorhus/broccoli-jade

Repository files navigation

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