handlebars-helper-br

0.1.0 • Public • Published

{{br}} NPM version

Adds <br> tags to generated HTML. Great for prototyping.

Installation

Use npm to install the package: npm i handlebars-helper-br.

Register the helper

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

Usage

With the helper registered, you may now begin using it in your templates.

{{br 5}}

Renders to:

<br>
<br>
<br>
<br>
<br>

Author

Jon Schlinkert

License and Copyright

Licensed under the MIT License Copyright (c) Jon Schlinkert, contributors.

Readme

Keywords

none

Package Sidebar

Install

npm i handlebars-helper-br

Weekly Downloads

6

Version

0.1.0

License

none

Last publish

Collaborators

  • jonschlinkert