aboutsummaryrefslogtreecommitdiff
path: root/compiler/ucd_table.go.tmpl (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Move all UCD-related processes to ucd packageRyo Nihei2021-11-271-98/+0
|
* Support Alphabetic property (Meet RL1.2 of UTS #18 partially)Ryo Nihei2021-11-261-0/+10
|
* Support Lowercase and Uppercase property (Meet RL1.2 of UTS #18 partially)Ryo Nihei2021-11-251-0/+24
|
* Support White_Space property (Meet RL1.2 of UTS #18 partially)Ryo Nihei2021-11-241-0/+21
|
* Add character property expression (Meet RL1.2 of UTS #18 partially)Ryo Nihei2021-04-301-0/+43
\p{property name=property value} matches a character has the property. When the property name is General_Category, it can be omitted. That is, \p{Letter} equals \p{General_Category=Letter}. Currently, only General_Category is supported. This feature meets RL1.2 of UTS #18 partially. RL1.2 Properties: https://unicode.org/reports/tr18/#RL1.2