Skip to main content

omp_tui/latex/
mod.rs

1//! Best-effort terminal rendering for inline and display LaTeX math.
2//!
3//! One-dimensional expressions map to styled Unicode runs; display constructs
4//! are delegated to the baseline-aligned box renderer.
5
6mod block;
7mod unicode;
8
9pub use block::latex_block;
10pub use unicode::latex_inline;
11pub(crate) use unicode::{inline_math_span_end, is_bare_math_environment};