//! tiny clap help renderer with markdown output and a bit of color.
//!
//! the flow is simple:
//! - parse args with clap and send your match arm into `help_command` (or the `_docs` variant if
//! you registered extra notes)
//! - `HelpPage` turns clap metadata into markdown-friendly structs
//! - `renderer` prints it with `termimad`, scrolling automatically if it doesn't fit
//! - `HelpTheme` keeps colors consistent and swappable
//!
//! everything is re-exported from here so you rarely need to dig into submodules.
pub use ;
pub use ;
pub use HelpPage;
pub use ;
pub use ;
pub use Color;
pub use MadSkin;