ddekany commented on PR #87:
URL: https://github.com/apache/freemarker/pull/87#issuecomment-1382094899
Quickly checked on Windows 10, Oracle Java 8... it does (de)normalization
apparently:
```
String s1 = "a\u0301";
String s2 = "รก";
System.out.println(s1.equals(s2)); // false
System.out.println(Collator.getInstance(Locale.US).compare(s1, s2));
// true
```
If this either worked or not based on if it's OpenJDK, or Oracle, or who
knows based on what other factor, that's another issue to fix in itself. If
(de)normalization is not terribly slow, then probably I would chose doing that.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]