Remove escaped single quote

This commit is contained in:
Rob Garrison 2017-07-14 03:59:13 -05:00
parent a3e149a30e
commit 01e63d5b1a

View File

@ -1073,7 +1073,7 @@ function updateLintReport(cm, delay) {
}
}
function escapeHtml(html) {
const chars = {'&': '&amp;', '<': '&lt;', '>': '&gt;', '"': '&quot;', '\'': '&#39;', '/': '&#x2F;'};
const chars = {'&': '&amp;', '<': '&lt;', '>': '&gt;', '"': '&quot;', "'": '&#39;', '/': '&#x2F;'};
return html.replace(/[&<>"'/]/g, function(char) { return chars[char]; });
}
}