Skip to content

Instantly share code, notes, and snippets.

@lewisnyman
Last active December 14, 2015 05:49
Show Gist options
  • Select an option

  • Save lewisnyman/5038570 to your computer and use it in GitHub Desktop.

Select an option

Save lewisnyman/5038570 to your computer and use it in GitHub Desktop.
A Handlebars helper for making a string HTML ID safe
Handlebars.registerHelper('idsafe', function(str) {
str = str.replace(/ /g , "-");
return str.toLowerCase();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment