RE: HTML5 and Unicode Normalization Form C

I agree that NFC/NFD against strings to be compared helps a lot. URI and idref are good examples of such strings.

However, I'm against applying NFC to displayable contents. If you read XML 1.0 5th Edition carefully, it suggests using NFC only for XML Names[1].

Unless Unicode resolves issues where NFC/NFD changes some glyphs, I believe that NFC/NFD are like ignore-case; they're good to compare strings, but you don't want to lowercase whole contents.

My best preference is web servers to apply NFC/NFD as it receives URL from browsers just like they do ignore-case, but if it's too difficult for some reasons, I can live with applying to attributes of specific data types. I don't think applying NFC/NFD to whole contents is the right way to go.

[1] http://www.w3.org/TR/xml/#sec-suggested-names

Regards,
Koji

Received on Sunday, 29 May 2011 19:15:22 UTC