Crates.io | mdbook-sitemap-generator |
lib.rs | mdbook-sitemap-generator |
version | 0.2.0 |
source | src |
created_at | 2022-08-03 13:05:50.362446 |
updated_at | 2023-09-01 20:03:30.74468 |
description | Utility to generate a sitemap.xml file for an mdbook project |
homepage | |
repository | https://github.com/rxdn/mdbook-sitemap-generator |
max_upload_size | |
id | 638037 |
size | 14,884 |
mdbook-sitemap-generator is a simple utility to generate sitemap.xml files for mdbook projects.
Binaries are distributed on the Github Releases Page.
It is also possible to install this utility via cargo, using cargo install mdbook-sitemap-generator
.
The utility should be run from the root of the project.
USAGE:
mdbook-sitemap-generator [OPTIONS] --domain <DOMAIN>
OPTIONS:
-d, --domain <DOMAIN>
-h, --help Print help information
-o, --output <OUTPUT>
When running the utility, you must pass the site's domain on URL via the -d
flag, for example, -d docs.example.com
.
If the -o
flag is not passed, the sitemap will be written to stdout.
For example:
$ ls
book book.toml src
$ mdbook-sitemap-generator -d docs.example.com -o book/sitemap.xml