scriba 0.2.0

CLI text rendering, prompts, and terminal output utilities
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Output types and rendering for structured CLI content.
//!
//! Supports multiple formats: Plain, Text, Markdown, JSON, and JSONL.
//! Build `Output` using fluent builder methods, then render with `Ui::render()`.

pub mod content;
pub mod render;
pub mod table;

pub use content::{Block, DefinitionEntry, KeyValueEntry, Output, StatusKind, Table};

#[cfg(test)]
mod tests;