antex 0.2.2

Styled text and tree in terminal
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! # Styled text and tree in terminal

mod colors;
mod mode;
mod text;
mod tree;

pub use colors::{Color, RgbColor};
pub use mode::ColorMode;
pub use text::{StyledText, Text, always, auto, never};
pub use tree::{LeafBuilder, LeafLineBuilder, NodeBuilder, NodeLineBuilder, TreeNode, leaf, node};