mdbook-admonish 1.17.0

A preprocessor for mdbook to add Material Design admonishments.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! For usage and reference, see the [mdbook-admonish book](https://tommilligan.github.io/mdbook-admonish/)
//!
//! Documentation is hosted externally, as docs.rs does not currently support plugins.

mod book_config;
mod config;
#[doc(hidden)]
pub mod custom;
mod markdown;
mod parse;
mod preprocessor;
mod render;
mod resolve;
mod types;

pub use crate::preprocessor::Admonish;