#mdbook #summary #markdown #cli-tool #auto-generate

app mdbook-auto-gen-summary

A preprocessor and cli tool for mdbook to auto generate summary

11 releases

0.1.10 Dec 9, 2021
0.1.9 Feb 1, 2021
0.1.6 Aug 1, 2020
0.1.4 Jul 31, 2020

#751 in Text processing

Download history 7/week @ 2024-01-08 3/week @ 2024-02-12 16/week @ 2024-02-19 27/week @ 2024-02-26 8/week @ 2024-03-04 5/week @ 2024-03-11 9/week @ 2024-03-18 187/week @ 2024-04-01

202 downloads per month

MIT license

17KB
292 lines

mdbook-auto-gen-summary

A preprocessor and cli tool for mdbook to auto generate summary.

install

cargo install mdbook-auto-gen-summary

It can be use in two ways:

1. Use as a cli tool.

mdbook-auto-gen-summary gen /path/to/your/mdbook/src

or

mdbook-auto-gen-summary gen -t /path/to/your/mdbook/src # -t indicate mdbook to make the first line(default the file name) of markdown file as the link text in SUMMARY.md 

This will walk your mdbook src dir and generate the book summary in /path/to/your/mdbook/src/SUMMARY.md

2. Use as mdbook preprocessor.

#cat /path/to/your/mdbook/book.toml

[book]
authors = []
language = "en"
multilingual = false
src = "src"

[build]
create-missing = false

#use as mdbook preprocessor
[preprocessor.auto-gen-summary]
first-line-as-link-text = true # indicate mdbook to make the first line(default the file name) of markdown file as the link text in SUMMARY.md 

[output.html.fold]
enable = true
level = 0

When you run

mdbook serve

Or

mdbook build

this will also walk your mdbook src dir and generate the book summary in /path/to/your/mdbook/src/SUMMARY.md

Dependencies

~12–25MB
~342K SLoC