This commit is contained in:
pls.153 2022-11-25 10:04:51 +01:00
parent 8257356efc
commit ac9d2ebf07
2 changed files with 7 additions and 2 deletions

View file

@ -34,6 +34,10 @@ public:
bool changed = true;
const int code = s.at(0).unicode();
switch (code) {
// undo automatic double hyphen substitution
case 8212:
s = "--";
break;
// replace iOS smart quotation marks with standard ones
// (English, French, German, ...)
case 8216: