diff options
author | nanohard <code@nanohard.net> | 2018-09-10 10:54:08 -0500 |
---|---|---|
committer | nanohard <code@nanohard.net> | 2018-09-10 10:54:08 -0500 |
commit | 80732c1536859d333ce808d6b2919e004cab95e8 (patch) | |
tree | d663d792ed14bb58af9f1c5cb249fbc72d1038e9 | |
parent | 19de3f195bca0d9bee735e0f9914026249bf86b3 (diff) |
Allow &endash and &emdash. Closes #271.
-rw-r--r-- | system/admin/static/common/js/util.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/system/admin/static/common/js/util.js b/system/admin/static/common/js/util.js index 8d5e74b..b126f2f 100644 --- a/system/admin/static/common/js/util.js +++ b/system/admin/static/common/js/util.js @@ -8,8 +8,6 @@ function replaceBadChars(text) { s = s.replace(/[\u201C\u201D\u201E]/g, "\""); // ellipsis s = s.replace(/\u2026/g, "..."); - // dashes - s = s.replace(/[\u2013\u2014]/g, "-"); // circumflex s = s.replace(/\u02C6/g, "^"); // open angle bracket |