diff --git a/CHANGELOG b/CHANGELOG index 1b4def6adc9..14046fade7e 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,10 @@ +mkdocs-material-9.0.5+insiders-4.28.1 (2023-01-17) + + * Fixed built-in info plugin erroring for Insiders on version check + * Fixed #4865: Navigation paths render bug when there's no top-level section + * Fixed #4875: Added support for hiding navigation paths + * Improved navigation path to not render for a single item + mkdocs-material-9.0.5+insiders-4.28.0 (2023-01-14) * Added support for navigation path (breadcrumbs) diff --git a/docs/insiders/changelog.md b/docs/insiders/changelog.md index 9ead85a6bbe..8f7b2c740f6 100644 --- a/docs/insiders/changelog.md +++ b/docs/insiders/changelog.md @@ -2,6 +2,13 @@ ## Material for MkDocs Insiders +### 4.28.1 January 17, 2023 { id="4.28.1" } + +- Fixed built-in info plugin erroring for Insiders on version check +- Fixed #4865: Navigation paths render bug when there's no top-level section +- Fixed #4875: Added support for hiding navigation paths +- Improved navigation path to not render for a single item + ### 4.28.0 January 14, 2023 { id="4.28.0" } - Added support for navigation path (breadcrumbs) diff --git a/docs/setup/setting-up-navigation.md b/docs/setup/setting-up-navigation.md index dbb91bf555d..7ed0bf0747d 100644 --- a/docs/setup/setting-up-navigation.md +++ b/docs/setup/setting-up-navigation.md @@ -377,6 +377,24 @@ hide: [Hide table of contents enabled]: ../assets/screenshots/hide-toc.png [Hide both enabled]: ../assets/screenshots/hide-navigation-toc.png +### Hiding the navigation path + +While the [navigation path] is rendered above the main headline, sometimes, it +might be desirable to hide it for a specific page, which can be achieved with +the front matter `hide` property: + +``` yaml +--- +hide: + - path +--- + +# Document title +... +``` + + [navigation path]: #navigation-path + ## Customization ### Keyboard shortcuts