Home

Awesome

Meteor Slugify

A Meteor package to remove special characters from a string.

Install

$ meteor add yasaricli:slugify

Usage

slugify('some string'); // returns some-string
slugify('some string', '_'); // if you prefer something other than '-' as separator

Template

{{ slugify 'You ve pressed the button 0 times.' }} // "you-ve-pressed-the-button-0-times."