0.0.2 • Published 9 years ago

plugin-node-handlebars-helper-listitems v0.0.2

Weekly downloads
1
License
MIT
Repository
-
Last release
9 years ago

Pattern Lab Node Plugin - Handlebars Helper Listitems

This is a patternlab node plugin providing a handlebars implementation of the patternlab listitems iterator.

#Installation: npm install --save plugin-node-handlebars-helper-listitems

Make sure the plugin is enabled in your patternlab-config.json file:

"plugins": {
  "plugin-node-handlebars-helper-listitems": {
    "enabled": true
  }
}

#Usage: Use the size parameter to control the number of listitems used in the iteration:

<ul>
{{#listitems size="4"}}
    <li> {{ title }} </li>
{{/listitems}}
</ul>