renderer
v0.1.5
Published
Returns a promise with a rendered handlebars file or renders template to a file
Downloads
926
Maintainers
Readme
renderer
Returns a promise with a rendered handlebars file or renders template to a file
renderer(src,[dest],data)
renderer 'templates/foo.hbs', 'public/foo.html',
title: 'Foobar'
name: 'Sublime'
.then ->
console.log 'all done!'
renderer 'templates/foo.hbs',
title: 'Foobar'
name: 'Sublime'
.then (rendered) ->
console.log rendered
Handlebars Helpers
readFile
Read file contents into the template
{{readFile '/path/relative/to/hbs/file.txt'}}
stringify
JSON.stringify an object into the template
{{{stringify someobj}}}
License
MIT