Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/razrfalcon/unicode-vo
Unicode vertical orientation detection
https://github.com/razrfalcon/unicode-vo
Last synced: about 2 months ago
JSON representation
Unicode vertical orientation detection
- Host: GitHub
- URL: https://github.com/razrfalcon/unicode-vo
- Owner: RazrFalcon
- License: apache-2.0
- Created: 2019-05-20T12:04:17.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-06-11T19:00:18.000Z (over 5 years ago)
- Last Synced: 2024-10-16T05:59:28.375Z (2 months ago)
- Language: Rust
- Size: 7.81 KB
- Stars: 6
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
## unicode-vo
[![Crates.io](https://img.shields.io/crates/v/unicode-vo.svg)](https://crates.io/crates/unicode-vo)
[![Documentation](https://docs.rs/unicode-vo/badge.svg)](https://docs.rs/unicode-vo)This library implements
[Unicode Vertical_Orientation Property](https://www.unicode.org/reports/tr50/tr50-19.html)
(annex #50).```rust
use unicode_vo::*;assert_eq!(char_orientation('A'), Orientation::Rotated);
assert_eq!(char_orientation('本'), Orientation::Upright);
```### License
Licensed under either of
- Apache License, Version 2.0
([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license
([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)at your option.
### Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in the work by you, as defined in the Apache-2.0 license, shall be
dual licensed as above, without any additional terms or conditions.