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
Suppose,
var template = "This is {{target}}";
var target = "user's pictures";
var result = Handlerbars.compile(template, {noEscape:true})({target:target});
Now try to print result. There is an apostrophe in target string value. Which will not change by encoded string.
If you will remove the {noEscape:true}
from compile function then it will change.