Published
Location-based breadcrumbs plugin for mkdocs.
pip install mkdocs-breadcrumbs-plugin
Package Downloads
Authors
Project URLs
Requires Python
>=3.8
mkdocs-breadcrumbs-plugin
Mkdocs location-based breadcrumbs navigation.
These directly get prepended to rendered Markdown.

Setup
Install the plugin using pip:
pip install mkdocs-breadcrumbs-plugin
Activate the plugin in mkdocs.yaml:
plugins:
- mkdocs-breadcrumbs-plugin:
delimiter: " / " # separator between sections
log_level: "WARNING" # "DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"
exclude_paths:
- "docs/mkdocs/**"
- "docs/mkdocs" # avoid generating index.md
additional_index_folders:
- temp_dir
generate_home_index: false
use_page_titles: true # use page title instead of path in breadcrumbs
home_text: "Home"
Development
Running Tests
To run the tests, use the following command:
pytest