Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Move all UCD-related processes to ucd package | Ryo Nihei | 2021-11-27 | 1 | -109/+0 |
| | |||||
* | Support Alphabetic property (Meet RL1.2 of UTS #18 partially) | Ryo Nihei | 2021-11-26 | 1 | -1/+11 |
| | |||||
* | Support Lowercase and Uppercase property (Meet RL1.2 of UTS #18 partially) | Ryo Nihei | 2021-11-25 | 1 | -0/+48 |
| | |||||
* | Support White_Space property (Meet RL1.2 of UTS #18 partially) | Ryo Nihei | 2021-11-24 | 1 | -19/+34 |
| | |||||
* | Use go fmt instead of gofmt | Ryo Nihei | 2021-05-12 | 1 | -1/+1 |
| | |||||
* | Change package structure | Ryo Nihei | 2021-05-08 | 1 | -1/+1 |
| | | | | The executable can be installed using `go install ./cmd/maleeni`. | ||||
* | Add character property expression (Meet RL1.2 of UTS #18 partially) | Ryo Nihei | 2021-04-30 | 1 | -0/+36 |
\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 |