Skip to content

Instantly share code, notes, and snippets.

View deanwagman's full-sized avatar

Dean Wagman deanwagman

View GitHub Profile
@tracend
tracend / handlebars.striptags.js
Created January 15, 2014 08:02
striptags() #handlebars #helper #cc
Handlebars.registerHelper("striptags", function( txt ){
// exit now if text is undefined
if(typeof txt == "undefined") return;
// the regular expresion
var regexp = new RegExp('#([^\\s]*)','g');
// replacing the text
return txt.replace(regexp, '');
});