0.2.0 • Published 11 years ago
handlebars-helper-lorem v0.2.0
handlebars-helper-lorem 
Handlebars template helper for generator lorem-ipsum placeholder text.
Install
Install with npm
npm i handlebars-helper-lorem --saveRun tests
npm testRegister 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
License
Copyright (c) 2014 Jon Schlinkert
Released under the MIT license
This file was generated by verb on November 11, 2014.