Skip to content

Commit

Permalink
Update Chinese translation, fix Chinese wrapping bug
Browse files Browse the repository at this point in the history
  • Loading branch information
kappa-maintainer committed Jan 16, 2022
1 parent 6720f01 commit 96d912e
Show file tree
Hide file tree
Showing 2 changed files with 124 additions and 120 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,9 @@ private byte shouldSplit(char start, char here) {
if (Character.isWhitespace(start) ^ Character.isWhitespace(here)) {
ret = 0b10;
}
if(Character.UnicodeScript.of(here) == Character.UnicodeScript.HAN) {
ret = 0b10;
}
if (here == '<') {
ret = 0b10;
}
Expand Down
Loading

0 comments on commit 96d912e

Please sign in to comment.