//! Parse markdown into styled ratatui lines with pluggable syntax highlighting. mod highlighter; mod parser; mod theme; pub use highlighter::{CodeHighlighter, NoHighlight}; pub use parser::{parse, CodeBlock, ParsedMarkdown}; pub use theme::{DefaultTheme, MarkdownTheme};