I modified the source to stop the 'ZERO WIDTH NO-BREAK SPACE' character from appearing at the beginning of all the html. I am using browserify and stringify together.
function stringify(content) {
content = content.replace(/^\uFEFF/, '');
return 'module.exports = ' + JSON.stringify(content) + ';\n';
}