Adds
<br>
tags to generated HTML. Great for prototyping.
Use npm to install the package: npm i handlebars-helper-br
.
The easiest way to register the helper with Assemble is to add the module to devDependencies
and keywords
in your project's package.json:
{
"devDependencies": {
"handlebars-helper-br": "*"
},
"keywords": [
"handlebars-helper-br"
]
}
Alternatively, to register the helper explicitly in the Gruntfile:
grunt.initConfig({
assemble: {
options: {
// the 'handlebars-helper-br' npm module must also be listed in
// devDependencies for assemble to automatically resolve the helper
helpers: ['handlebars-helper-br', 'foo/*.js']
},
files: {
'dist/': ['src/templates/*.hbs']
}
}
});
With the helper registered, you may now begin using it in your templates.
{{br 5}}
Renders to:
<br>
<br>
<br>
<br>
<br>
Jon Schlinkert
Licensed under the MIT License Copyright (c) Jon Schlinkert, contributors.