This PR fixes rendering codes that contain UTF-8 tokens when using gutter or Ellison. For example, the following code is not currently being rendered correctly:
import نام کتابخانه
The highlighted output is currently something like this:
This PR uses the regular expression u flag to support Unicode characters. The result is now correct:
This PR fixes rendering codes that contain UTF-8 tokens when using gutter or Ellison. For example, the following code is not currently being rendered correctly:
The highlighted output is currently something like this:
This PR uses the regular expression
u
flag to support Unicode characters. The result is now correct: