https://github.com/staticdev/mdbook-check-missing-md
A backend for `mdbook` which will find Markdowns you forgot on SUMMARY.md.
https://github.com/staticdev/mdbook-check-missing-md
Last synced: about 1 month ago
JSON representation
A backend for `mdbook` which will find Markdowns you forgot on SUMMARY.md.
- Host: GitHub
- URL: https://github.com/staticdev/mdbook-check-missing-md
- Owner: staticdev
- License: mit
- Created: 2024-06-13T17:56:21.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-18T12:09:34.000Z (almost 2 years ago)
- Last Synced: 2025-10-19T15:39:41.763Z (5 months ago)
- Language: Rust
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# mdbook-check-missing-md
A backend for `mdbook` which will find Markdowns you forgot on SUMMARY.md.
## Installation
First you'll need to install `mdbook-check-missing-md`:
```sh
cargo install mdbook-check-missing-md
```
To use this preprocessor, add it to your `book.toml` file:
```toml
[output.check-missing-md]
```
Then run:
```sh
mdbook build
```
## Development
Build and run tests with:
```sh
cargo build
cargo test
```
## Credits
This plugin was heavily inspired by [mdbook-linkcheck](https://github.com/Michael-F-Bryan/mdbook-linkcheck/tree/master).