# mdbook-footnote A preprocessor for [mdbook](https://github.com/rust-lang/mdBook) to support the inclusion of footnotes. It turns this: ```text Normal text{{footnote: Or is it?}} in body. ``` into: > Normal text1 in body. with the footnotes accumulated at the bottom of the page, following an `
`. ## Installation To use, install the tool ```sh cargo install mdbook-footnote ``` and add it as a preprocessor in `book.toml`: ```toml [preprocessor.footnote] ```


1: Or is it?