ag-tui-text 0.14.4

Agentty is an ADE (Agentic Development Environment) for structured, controllable AI-assisted software development.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Shared terminal text rendering helpers for Agentty frontends.

/// HTML normalization and terminal rendering for forge-authored Markdown.
pub mod html;
/// Markdown parsing, terminal styling, wrapping, and rendered-line caching.
pub mod markdown;
/// Bounded Mermaid parsing and terminal diagram rendering.
pub mod mermaid;
mod style;
/// Terminal-width wrapping, truncation, borrowing, and compact formatting.
pub mod text_util;

pub use style::{TextPalette, TextRenderSettings};