Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mihaigalos/mkdocs-breadcrumbs-plugin

Location-based breadcrumbs navigation.
https://github.com/mihaigalos/mkdocs-breadcrumbs-plugin

Last synced: about 1 month ago
JSON representation

Location-based breadcrumbs navigation.

Awesome Lists containing this project

README

        

# mkdocs-breadcrumbs-plugin

Mkdocs location-based breadcrumbs navigation.

These directly get prepended to rendered Markdown.

![screenshot](https://github.com/mihaigalos/mkdocs-breadcrumbs-plugin/raw/main/screenshots/mkdocs-breadcrumbs-plugin.png)

## Setup

Install the plugin using pip:

```bash
pip install mkdocs-breadcrumbs-plugin
```

Activate the plugin in `mkdocs.yaml`:
```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
```