npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

handlebars-helper-lorem

0.2.0

@jonschlinkert

npmHomeRepoSnykSocket
Downloads:99
$ npm install handlebars-helper-lorem
DailyWeeklyMonthlyYearly

handlebars-helper-lorem NPM version

Handlebars template helper for generator lorem-ipsum placeholder text.

Install

Install with npm

npm i handlebars-helper-lorem --save

Run tests

npm test

Register the helper

This should work with any engine, here are a few examples

template

template.helper('handlebars-lorem', require('handlebars-helper-lorem'));

assemble

Assemble ^0.6.0:

assemble.helper('handlebars-lorem', require('handlebars-helper-lorem'));

Assemble ^0.4.0:

assemble: {
  options: {
    // also be sure to add the helper to dependencies or devDependencies in package.json
    helpers: ['handlebars-helper-lorem']
  }
}

verb

Verb ^0.3.0:

verb.helper('handlebars-lorem', require('handlebars-helper-lorem'));

handlebars

var handlebars = require('handlebars');
handlebars.registerHelper('handlebars-lorem', require('handlebars-helper-lorem'));

Example usage

Handlebars:

// use default options
var template = Handlebars.compile('{{lorem}}');
var result = template();

// pass options on the context
var context = {count: 7, units: 'words'}
var template = Handlebars.compile('{{lorem this}}');
var result = template(context);

// pass options on the helper hash
var template = Handlebars.compile('{{lorem count="7" units="words"}}');
var result = template();

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue

Author

Jon Schlinkert

  • github/helpers
  • twitter/helpers

License

Copyright (c) 2014 Jon Schlinkert
Released under the MIT license


This file was generated by verb on November 11, 2014.