1 2 3 4 5 6 7 8 9 10 11 12 13
//! Markdown Fenced Code Block Highlighting #![cfg_attr(docsrs, feature(doc_cfg))] #![warn(clippy::print_stderr)] #![warn(clippy::print_stdout)] #[cfg(feature = "syntax")] mod syntax; #[cfg(feature = "syntax")] pub use syntax::*; pub use raw::*; mod raw;