mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-12-28 19:10:28 +00:00
Transliterate control characters in site title (#8339)
This commit is contained in:
parent
9b6baba5d5
commit
0e0818c8e9
@ -924,7 +924,7 @@ exports.transliterate = function(str) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
exports.transliterateToSafeASCII = function(str) {
|
exports.transliterateToSafeASCII = function(str) {
|
||||||
return str.replace(/[^\x00-\x7F]/g,function(ch) {
|
return str.replace(/[^\x20-\x7F]/g,function(ch) {
|
||||||
return exports.transliterationPairs[ch] || ""
|
return exports.transliterationPairs[ch] || ""
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user