Update external-content.ts

This commit is contained in:
Benedikt Johannes 2026-03-01 21:37:30 +01:00 committed by Shakker
parent e0b8bf9dfd
commit ef2322b878
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ function foldMarkerChar(char: string): string {
function foldMarkerText(input: string): string {
return input.replace(
/[\uFF21-\uFF3A\uFF41-\uFF5A\uFF1C\uFF1E\u2329\u232A\u3008\u3009\u2039\u203A\u27E8\u27E9\uFE64\uFE65]/g,
/[\uFF21-\uFF3A\uFF41-\uFF5A\uFF1C\uFF1E\u2329\u232A\u3008\u3009\u2039\u203A\u27E8\u27E9\uFE64\uFE65\u00AB\u00BB\u300A\u300B\u27EA\u27EB\u276C\u276D\u276E\u276F]/g,
(char) => foldMarkerChar(char),
);
}