The intent here is to make mdbook-core a private dependency that the user shouldn't need.
10 lines
208 B
Rust
10 lines
208 B
Rust
//! High-level library for running mdBook.
|
|
|
|
pub mod builtin_preprocessors;
|
|
pub mod builtin_renderers;
|
|
pub mod init;
|
|
mod load;
|
|
mod mdbook;
|
|
|
|
pub use mdbook::MDBook;
|
|
pub use mdbook_core::{book, config, errors};
|