Skip to content
Snippets Groups Projects
Commit 461949db authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Translate UNICODE ZERO WIDTH NON-JOINER to nothing (empty string) for CP437

Fixes msglist.js display of TDLR article reported by Nelgin
parent c9220e83
No related branches found
No related tags found
No related merge requests found
......@@ -207,6 +207,7 @@ function unicode_cp437(uc)
case 0x2008: return String.fromCharCode(0x0020);
case 0x2009: return String.fromCharCode(0x0020);
case 0x200A: return String.fromCharCode(0x0020);
case 0x200C: return ''; // ZERO WIDTH NON-JOINER
case 0x2010: return String.fromCharCode(0x002D);
case 0x2011: return String.fromCharCode(0x002D);
case 0x2012: return String.fromCharCode(0x002D);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment