texform-core 0.1.0

Parser, document tree, and serializer for TeXForm (internal; use the texform crate)
Documentation
//! TeXForm core library — LaTeX formula parsing, AST, and transformation.
//!
//! # Modules
//!
//! | Module | Purpose |
//! |---|---|
//! | [`parse`] | [`ParseContext`](parse::ParseContext): the main API for configuring knowledge and parsing |
//! | [`ast`] | Mutable arena-backed AST for tree transforms |
//! | [`lexer`] | Logos-based lexer mapping LaTeX source to tokens |
//! | [`column_parser`] | Standalone parser for `{lcc}` column specifications |

pub mod ast;
pub mod column_parser;
pub mod document;
pub mod lexer;
pub mod parse;
pub mod serialize;
pub mod target_counter;

mod dimension;
pub mod knowledge;