inkhaven 1.3.15

Inkhaven — TUI literary work editor for Typst books
1
2
3
4
5
6
7
8
9
10
11
12
//! Phonology engine (LANG-1) — deterministic phonotactic validation (P1.1),
//! IPA sonority + sonority-aware syllabification (P1.2). Allophony / stress /
//! tone evaluation join here in later P1 increments.

pub mod allophony_eval;
pub mod ipa;
pub mod rewrite;
pub mod romanize;
pub mod stress_eval;
pub mod syllable;
pub mod tone_eval;
pub mod validator;