Render templates with Broccoli (haml, jade, markdown etc...) using consolidate
npm install broccoli-render-templateRender 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.
``js`
var renderTemplates = require("broccoli-render-template");
var templates = renderTemplates(source);
To pass variables to your templates, provide them after the tree:
`js``
var templates = renderTemplates(source, {
foo: 1,
bar: 2
});