1
0
Fork 0
mirror of synced 2024-10-03 02:27:06 +13:00

Fix images and lots of other string escaping not working

This commit is contained in:
Andrew Kingston 2020-10-12 10:49:21 +01:00
parent 9a7142ea9a
commit 339bb8b76c

View file

@ -11,7 +11,7 @@ const entityMap = {
mustache.escape = text =>
String(text).replace(/[&<>"'`=/]/g, function fromEntityMap(s) {
return entityMap[s]
return entityMap[s] || s
})
export default mustache.render