ag_tui_text/lib.rs
1//! Shared terminal text rendering helpers for Agentty frontends.
2
3/// HTML normalization and terminal rendering for forge-authored Markdown.
4pub mod html;
5/// Markdown parsing, terminal styling, wrapping, and rendered-line caching.
6pub mod markdown;
7/// Bounded Mermaid parsing and terminal diagram rendering.
8pub mod mermaid;
9mod style;
10/// Terminal-width wrapping, truncation, borrowing, and compact formatting.
11pub mod text_util;
12
13pub use style::{TextPalette, TextRenderSettings};