farben 0.20.0

Markup for the Terminal, but safer and faster.
Documentation
/*
 * Copyright (c) 2026 RazkarStudio
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at https://mozilla.org/MPL/2.0/.
 */

//! 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;