joshowens:inflectionizer

v0.3.0Published 10 years ago

This package has not had recent updates. Please investigate it's current state before committing to using it in your project.

Inflectionizer

Inflectionizer is a set of handlebars helpers for working with strings. This is based off inflections.js, which is in turn based off Rails activesupport inflections.

Getting Started

mrt add inflectionizer

Usage

In your handelbars html template you just call it like this:

{{pluralize 1 'people'}}
{{pluralize 3 'person'}}

This will output:

1 person
3 people