$ npm install handlebars-helper-loremHandlebars template helper for generator lorem-ipsum placeholder text.
npm i handlebars-helper-lorem --save
npm test
This should work with any engine, here are a few examples
template.helper('handlebars-lorem', require('handlebars-helper-lorem'));
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 ^0.3.0:
verb.helper('handlebars-lorem', require('handlebars-helper-lorem'));
var handlebars = require('handlebars');
handlebars.registerHelper('handlebars-lorem', require('handlebars-helper-lorem'));
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();
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue
Jon Schlinkert
Copyright (c) 2014 Jon Schlinkert
Released under the MIT license
This file was generated by verb on November 11, 2014.