Skip to content

Instantly share code, notes, and snippets.

@bretdavidson
Created March 14, 2013 17:49
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bretdavidson/5163498 to your computer and use it in GitHub Desktop.
Save bretdavidson/5163498 to your computer and use it in GitHub Desktop.
Handlebars.registerHelper('quotify', function (string) {
var string = string.replace(/[\u2018\u2019]/g, "'").replace(/[\u201C\u201D]/g, '"');
return string;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment