This sets up mdbook-preprocessor with the intent of being the core library that preprocessors use to implement the necessary interactions.
9 lines
172 B
Rust
9 lines
172 B
Rust
//! Book preprocessing.
|
|
|
|
pub use self::cmd::CmdPreprocessor;
|
|
pub use self::index::IndexPreprocessor;
|
|
pub use self::links::LinkPreprocessor;
|
|
|
|
mod cmd;
|
|
mod index;
|
|
mod links;
|