Skip to main content

farben_md/
lib.rs

1//! Markdown rendering for the terminal.
2//!
3//! Parses a subset of inline markdown syntax and renders it as ANSI-escaped
4//! terminal output. Supports bold, italic, underline, strikethrough, and inline
5//! code. Delegates ANSI encoding to [`farben_core::ansi`].
6
7pub mod lexer;
8pub mod renderer;