otl_normalizer/lib.rs
1//! Generating a normalized text representation for OpenType layout tables
2//!
3//! This currently supports a subset of GPOS (kerning and marks)
4
5pub mod args;
6mod common;
7mod error;
8mod gdef;
9mod glyph_names;
10mod gpos;
11mod gsub;
12mod variations;
13
14pub use error::Error;
15pub use glyph_names::NameMap;
16
17pub use gdef::print as print_gdef;
18pub use gpos::print as print_gpos;
19pub use gsub::print as print_gsub;