0.0.3 • Published 10 years ago

broccoli-render-template v0.0.3

Weekly downloads
3
License
MIT
Repository
github
Last release
10 years ago

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
});