mant 0.11.0

Local-first TUI, structured CLI, and MCP server for manuals and Markdown
1
2
3
4
5
6
7
8
9
10
11
//! Process-owned terminal presentation and output delivery.

#[cfg(feature = "pager")]
pub(crate) mod pager;
#[cfg(all(unix, any(feature = "tui", feature = "pager")))]
mod signals;
#[cfg(feature = "tui")]
pub(crate) mod terminal;
#[cfg(any(feature = "tui", feature = "pager"))]
mod terminal_lease;
pub(crate) mod tldr;