mdbook_html/
lib.rs

1//! mdBook HTML renderer.
2
3mod html;
4mod html_handlebars;
5pub mod theme;
6pub(crate) mod utils;
7
8pub use html_handlebars::HtmlHandlebars;