1
Fork 0
Go to file
2018-09-13 14:26:37 +02:00
src Only use top- and second-level headings for the ToC 2018-07-20 12:06:54 +02:00
.gitignore init 2018-07-19 18:10:08 +02:00
.travis.yml Enable travis builds 2018-09-13 14:26:37 +02:00
Cargo.lock mdbook upgrade 2018-09-13 11:14:38 +02:00
Cargo.toml mdbook upgrade 2018-09-13 11:14:38 +02:00
LICENSE Add License and Readme 2018-07-20 12:07:21 +02:00
README.md Add License and Readme 2018-07-20 12:07:21 +02:00

mdbook-toc

A preprocessor for mdbook to add inline Table of Content support.

It turns this:

<!-- toc -->

into a Table of Contents based on all top- and second-level headings of the chapter.

Installation

If you want to use only this preprocessor, install the tool:

cargo install --git https://github.com/badboy/mdbook-toc

Finally, build your book:

mdbook-toc path/to/book

Programmatic use

You can also use this programmatically, e.g. in order to use multiple additional preprocessors. Add mdbook-toc as a dependency in your Cargo.toml:

[dependencies.mdbook-toc]
git = "https://github.com/badboy/mdbook-toc"

Then add it to your code:

extern crate mdbook_toc;

// ...

let mut book = MDBook::load(&book_dir)?;
book.with_preprecessor(mdbook_toc::Toc);

License

MPL. See LICENSE.
Copyright (c) 2018 Jan-Erik Rediger janerik@fnordig.de