mdbook-auto-gen-summary

Crates.iomdbook-auto-gen-summary
lib.rsmdbook-auto-gen-summary
version0.1.10
sourcesrc
created_at2020-07-31 03:21:36.962089
updated_at2021-12-09 05:27:40.577939
descriptionA preprocessor and cli tool for mdbook to auto generate summary.
homepagehttps://crates.io/crates/mdbook-auto-gen-summary
repositoryhttps://github.com/knightflower1989/mdbook-auto-gen-summary
max_upload_size
id271531
size58,423
George (knightflower1989)

documentation

https://crates.io/crates/mdbook-auto-gen-summary

README

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

Commit count: 30

cargo fmt