broccoli-render-template
v0.0.3
Published
Render templates with Broccoli (haml, jade, markdown etc...) using consolidate
Downloads
14
Maintainers
Readme
broccoli-render-template
Render templates using consolidate.
NOTE: you must still install the engines you wish to use, add them to your package.json dependencies.
It uses the filename extension of the template to decide what engine to use.
Usage
var renderTemplates = require("broccoli-render-template");
var templates = renderTemplates(source);
To pass variables to your templates, provide them after the tree:
var templates = renderTemplates(source, {
foo: 1,
bar: 2
});