standout 9.0.0

Styled CLI template rendering with automatic terminal detection
1
2
3
4
5
6
7
8
9
10
11
12
mod config;
pub(crate) mod data;
mod render;

pub use config::{
    default_help_theme, validate_command_groups, CommandGroup, HelpConfig, HelpLength,
};
pub(crate) use render::{
    human_help_format, inline_template_ref, named_or_inline_template, render_via_request,
    DEFAULT_HELP_TEMPLATE,
};
pub use render::{render_help, render_help_with_topics};