#mdbook #boilerplate #proprocessor

mdbook-preprocessor-boilerplate

Boilerplate code for mdbook preprocessors

3 releases

0.1.2 Apr 20, 2023
0.1.1 Dec 2, 2021
0.1.0 Dec 2, 2021

#681 in Text processing

Download history 1425/week @ 2023-12-11 1358/week @ 2023-12-18 1344/week @ 2023-12-25 1068/week @ 2024-01-01 1961/week @ 2024-01-08 1023/week @ 2024-01-15 919/week @ 2024-01-22 1624/week @ 2024-01-29 2211/week @ 2024-02-05 1513/week @ 2024-02-12 973/week @ 2024-02-19 1474/week @ 2024-02-26 1574/week @ 2024-03-04 1450/week @ 2024-03-11 1563/week @ 2024-03-18 1347/week @ 2024-03-25

6,023 downloads per month
Used in 3 crates

GPL-3.0 license

15KB
55 lines

mdbook-preprocessor-boilerplate

Boilerplate code for mdbook preprocessors.

Handles the CLI, checks whether the renderer is supported, checks the mdbook version, and runs your preprocessor. All you need to do is implement the mdbook::preprocess::Preprocessor trait.

This boilerplate has a few heavy dependencies (like serde_json and mdbook). If you want a small executable, you'll have to implement this functionality yourself.

Example

The following is functionally identical to the No-Op Preprocessor Example given by mdbook.

use mdbook::book::Book;
use mdbook::preprocess::{CmdPreprocessor, Preprocessor, PreprocessorContext};
use anyhow::{bail, Result};

fn main() {
    mdbook_preprocessor_boilerplate::run(
        NoOpPreprocessor,
        "An mdbook preprocessor that does nothing" // CLI description
    );
}

struct NoOpPreprocessor;

impl Preprocessor for NoOpPreprocessor {
    fn name(&self) -> &str {
        "nop-preprocessor"
    }

    fn run(&self, ctx: &PreprocessorContext, book: Book) -> Result<Book> {
        // In testing we want to tell the preprocessor to blow up by setting a
        // particular config value
        if let Some(nop_cfg) = ctx.config.get_preprocessor(self.name()) {
            if nop_cfg.contains_key("blow-up") {
                anyhow::bail!("Boom!!1!");
            }
        }

        // we *are* a no-op preprocessor after all
        Ok(book)
    }

    fn supports_renderer(&self, renderer: &str) -> bool {
        renderer != "not-supported"
    }
}

License: GPL-3.0

Dependencies

~11–25MB
~335K SLoC