omp-tui 0.1.0

Retained-mode terminal UI components, rendering, input, and terminal integration for omp
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Best-effort terminal rendering for inline and display LaTeX math.
//!
//! One-dimensional expressions map to styled Unicode runs; display constructs
//! are delegated to the baseline-aligned box renderer.

mod block;
mod unicode;

pub use block::latex_block;
pub use unicode::latex_inline;
pub(crate) use unicode::{inline_math_span_end, is_bare_math_environment};