Files
Cagire/crates/markdown/src/lib.rs
Raphaël Forment b47c789612
Some checks failed
Deploy Website / deploy (push) Failing after 4m48s
Feat: continue refactoring
2026-02-01 13:39:25 +01:00

8 lines
163 B
Rust

mod highlighter;
mod parser;
mod theme;
pub use highlighter::{CodeHighlighter, NoHighlight};
pub use parser::parse;
pub use theme::{DefaultTheme, MarkdownTheme};