aboutsummaryrefslogtreecommitdiff
path: root/generator/main.go (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Change package structureRyo Nihei2021-05-081-70/+0
| | | | The executable can be installed using `go install ./cmd/maleeni`.
* Add character property expression (Meet RL1.2 of UTS #18 partially)Ryo Nihei2021-04-301-0/+70
\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