in gulpfile.js [51:56]
handlebars.Handlebars.compile = function (fileContents, options) {
// The preventIndent option is necessary to prevent format issues
// that occur with <pre> blocks
var newOptions = _.extend({}, options, { preventIndent: true });
return originalCompile(fileContents, newOptions);
};