diff --git a/src/graphic/helper/parseText.ts b/src/graphic/helper/parseText.ts index a928552d6..a69896d79 100644 --- a/src/graphic/helper/parseText.ts +++ b/src/graphic/helper/parseText.ts @@ -578,7 +578,7 @@ function pushTokens( function isLatin(ch: string) { let code = ch.charCodeAt(0); - return code >= 0x21 && code <= 0xFF; + return code >= 0x21 && code <= 0x17F; } const breakCharMap = reduce(',&?/;] '.split(''), function (obj, ch) {