readsight 1.0.0

Multilingual readability library — 86 languages, 17 formulas, TeX-based syllable counting via the Frank M. Liang algorithm.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Hyphenation layer: patterns, exceptions, `.tex` parsing, and the Liang
//! hyphenator.

pub mod exceptions;
pub mod hyphenator;
pub mod pattern;
pub mod tex_source;

pub use exceptions::{HyphenationExceptionsCollection, HyphenationOverride};
pub use hyphenator::{Hyphenator, LiangHyphenator};
pub use pattern::{Pattern, PatternsCollection};
pub use tex_source::{parse_pattern_token, parse_tex, LoadedPatterns};