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

Replace Unicode 'LEFT SINGLE QUOTATION MARK' (U+2018) with backtick

To be consistent with sbbs's utf8_normalize_str() function behavior.
parent b2611664
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
// $Id: unicode_cp437.js,v 1.3 2019/07/25 11:13:25 rswindell Exp $
function unicode_cp437(uc)
{
switch(uc) {
......@@ -215,7 +213,7 @@ function unicode_cp437(uc)
case 0x2013: return String.fromCharCode(0x002D);
case 0x2014: return String.fromCharCode(0x002D);
case 0x2015: return String.fromCharCode(0x002D);
case 0x2018: return String.fromCharCode(0x0027);
case 0x2018: return String.fromCharCode(0x0060);
case 0x2019: return String.fromCharCode(0x0027);
case 0x201A: return String.fromCharCode(0x0027);
case 0x201B: return String.fromCharCode(0x0027);
......
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