farben 0.19.0-beta.2

Markup for the Terminal, but safer and faster.
Documentation
//! Macro modules for farben.
//!
//! Organized by feature area: `color` for the print and format macros,
//! `format` for the style registry macros, and `markdown` for inline markdown printing.

pub mod color;
pub mod eprint;
pub mod expand;
pub mod format;
pub mod load;
#[deprecated(
    since = "0.18.0",
    note = "use the `inline` feature, it works with the `c*` family. will be deleted at 0.19 stable"
)]
pub mod markdown;
pub mod strip;

#[cfg(feature = "anstyle")]
pub mod anstyle;