Skip to content

Instantly share code, notes, and snippets.

@seahrh
Forked from Heydon/slugify-helper.js
Created December 22, 2015 01:42
Show Gist options
  • Save seahrh/771f5b8300d82f732d29 to your computer and use it in GitHub Desktop.
Save seahrh/771f5b8300d82f732d29 to your computer and use it in GitHub Desktop.
Handlebars.registerHelper('slugify', function(title) {
return title.toLowerCase()
.replace(/ /g,'-')
.replace(/[^\w-]+/g,'');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment