I have all my content pre-escaped, so rather than using the triple stash everywhere i would like to globally disable handlebars escaping. A quick search showed a similar feature
Try something like this:
var template = Handlebars.compile(source, {noEscape: true});