Adds Dustjs (LinkedIn fork) support to brunch.
Add "dustjs-linkedin-brunch": "x.y.z" to package.json of your brunch app.
Pick a plugin version that corresponds to your minor (y) brunch version.
If you want to use git version of plugin, use
"dustjs-linkedin-brunch": "git@github.com:mgarbacz/dustjs-linkedin-brunch.git"
instead.
Create a template:
# views/templates/example.dust
<h1>Hello {name}!</h1>
Require the template into a variable:
template = require 'views/templates/example'
Load template into the dust.cache object:
dust.loadSource template
Render the template:
dust.render 'example', { 'name': 'Batman' }, (error, output) =>
@$el.html output if not error
For more info on Dustjs itself, visit the docs prepared by LinkedIn.
[MIT License] (LICENSE.md)