mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
Updated Insiders changelog
This commit is contained in:
parent
ba3948f854
commit
b4c2ce4c13
@ -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)
|
||||
|
@ -2,6 +2,13 @@
|
||||
|
||||
## Material for MkDocs Insiders
|
||||
|
||||
### 4.28.1 <small>January 17, 2023</small> { 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 <small>January 14, 2023</small> { id="4.28.0" }
|
||||
|
||||
- Added support for navigation path (breadcrumbs)
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user