https://github.com/duffsdevice/tiny-hyphenator
https://github.com/duffsdevice/tiny-hyphenator
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/duffsdevice/tiny-hyphenator
- Owner: DuffsDevice
- License: mit
- Created: 2019-04-07T16:29:47.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-04-07T16:49:37.000Z (about 7 years ago)
- Last Synced: 2025-04-04T22:09:40.020Z (about 1 year ago)
- Language: C++
- Size: 31.3 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TINY-HYPHENATOR
My quick shot at *Word Hyphenation* a.k.a *Syllable Boundary Detection*. Use this library to achieve efficient and hopefully exact word hyphenations. :wink:
Currently the only language supported is German (with a rather high percentage (95%) of correct hyphenations), but it should easily be adaptable for other languages.
This library spans ~370 lines of C++ code.
At the moment there is no documentation, please refer to the comments in the code, they should hopefully be quite helpful.
Apart from that, you should find a sample that illustrates the usage of **tiny-hyphenator**.
The algorithm is not based on any published one and works without a dictionary.
It's is written in plain C++ and is tested under GCC 4.7, 4.8 and 4.9.