inkhaven 1.3.14

Inkhaven — TUI literary work editor for Typst books
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! ConLang Development Suite (LANG-1) — a flagship 1.3.x feature layered on
//! the existing 1.2.13 `Language` system book. The book stays the system of
//! record; these engines reconstruct an in-memory model from its HJSON
//! chapters. See `Documentation/PROPOSALS/LANG-1_PLAN.md`.
//!
//! P1.1 (this increment): the phonology substrate — phoneme inventory,
//! classes, syllable templates, deterministic phonotactic constraints, and a
//! seeded word generator. Pure, deterministic, dependency-free.

pub mod generate;
pub mod lexicon;
pub mod links;
pub mod morphology;
pub mod phonology;
pub mod types;

pub use types::{Phonology, TemplateRole};