1
2
3
4
5
6
7
8
9
#![deny(missing_docs)]
//! Preprocess math blocks using KaTeX for mdBook.
pub mod cfg;
pub mod preprocess;
pub mod render;
pub mod scan;

#[cfg(test)]
mod tests;