1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2024-09-24 03:18:21 +02:00

Updated Insiders changelog

This commit is contained in:
squidfunk 2022-05-25 09:50:27 +02:00
parent 80c65cbb5b
commit 132d79a681
5 changed files with 49 additions and 10 deletions

View File

@ -1,3 +1,8 @@
mkdocs-material-8.2.15+insiders-4.16.0 (2022-05-25)
* Added support for navigation pruning
* Fixed search results for non-segmented characters (4.15.2 regression)
mkdocs-material-8.2.15+insiders-4.15.2 (2022-05-22)
* Removed workaround for abbr on touch devices (superseded by tooltips)

View File

@ -20,7 +20,7 @@ number of Chinese users.__
<span>__Martin Donath__ · @squidfunk</span>
<span>
:octicons-calendar-24: May 5, 2022 ·
:octicons-clock-24: 5 min read ·
:octicons-clock-24: 3 min read ·
[:octicons-tag-24: 8.2.13+insiders-4.14.0][insiders-4.14.0]
</span>
</aside>

View File

@ -6,6 +6,9 @@ template: overrides/main.html
## Material for MkDocs Insiders
- Added support for navigation pruning
- Fixed search results for non-segmented characters (4.15.2 regression)
### 4.15.2 <small>_ May 22, 2022</small> { id="4.15.2" }
- Removed workaround for `abbr` on touch devices (superseded by tooltips)

View File

@ -174,9 +174,10 @@ which are currently exclusively available to sponsors:
<div class="mdx-columns" markdown>
- [x] [Navigation pruning] :material-alert-decagram:{ title="Added on May 25, 2022" }
- [x] [Tooltips] :material-alert-decagram:{ title="Added on May 8, 2022" }
- [x] [Chinese search support] :material-alert-decagram:{ title="Added on May 5, 2022" }
- [x] [Tag icons] :material-alert-decagram:{ title="Added on April 24, 2022" }
- [x] [Tag icons]
- [x] [Card grids]
- [x] [Offline plugin]
- [x] [Privacy plugin]
@ -266,13 +267,14 @@ are released for general availability.
- [x] [Annotations]
- [x] [Chinese search support]
- [x] [Navigation icons]
- [x] [Navigation pruning]
- [ ] Navigation status badges
- [ ] Navigation pruning
- [ ] Blog
[Annotations]: ../reference/annotations.md
[Chinese search support]: ../blog/2022/chinese-search-support.md
[Navigation icons]: ../reference/index.md#setting-the-page-icon
[Navigation pruning]: ../setup/setting.up-navigation.md#navigation-pruning
#### $ 14,000 Goat's Horn

View File

@ -181,6 +181,33 @@ theme:
[navigation.expand enabled]: ../assets/screenshots/navigation-expand.png
[navigation.expand disabled]: ../assets/screenshots/navigation.png
### Navigation pruning
[:octicons-heart-fill-24:{ .mdx-heart } Sponsors only][Insiders]{ .mdx-insiders } ·
[:octicons-tag-24: insiders-4.16.0][Insiders] ·
:octicons-beaker-24: Experimental
When pruning is enabled, only the visible navigation items are included in the
rendered HTML, __reducing the size of the built site by 33% or more__. Add the
following lines to `mkdocs.yml`:
``` yaml
theme:
features:
- navigation.prune # (1)!
```
1. This feature flag is not compatible with
[`navigation.expand`][navigation.expand], as navigation expansion requires
the complete navigation structure.
This feature flag is especially useful for documentation sites with 100+ or even
1,000+ of pages, as the navigation makes up a significant fraction of the HTML.
Navigation pruning will replace all expandable sections with links to the first
page in that section (or the section index page).
[navigation.expand]: #navigation-expansion
### Section index pages
[:octicons-tag-24: 7.3.0][navigation.indexes support] ·
@ -194,9 +221,12 @@ following lines to `mkdocs.yml`:
``` yaml
theme:
features:
- navigation.indexes
- navigation.indexes # (1)!
```
1. This feature flag is not compatible with [`toc.integrate`][toc.integrate],
as sections cannot host the table of contents due to missing space.
=== ":octicons-check-circle-fill-16: Enabled"
[![navigation.indexes enabled]][navigation.indexes enabled]
@ -218,8 +248,6 @@ nav:
- Page n: section/page-n.md
```
This feature flag is not compatible with [`toc.integrate`][toc.integrate].
[navigation.indexes support]: https://github.com/squidfunk/mkdocs-material/releases/tag/7.3.0
[navigation.indexes enabled]: ../assets/screenshots/navigation-index-on.png
[navigation.indexes disabled]: ../assets/screenshots/navigation-index-off.png
@ -257,9 +285,13 @@ to `mkdocs.yml`:
``` yaml
theme:
features:
- toc.integrate
- toc.integrate # (1)!
```
1. This feature flag is not compatible with
[`navigation.indexes`][navigation.indexes], as sections cannot host the
table of contents due to missing space.
=== ":octicons-check-circle-fill-16: Enabled"
[![toc.integrate enabled]][toc.integrate enabled]
@ -268,9 +300,6 @@ theme:
[![toc.integrate disabled]][toc.integrate disabled]
This feature flag is not compatible with [`navigation.indexes`]
[navigation.indexes].
[table of contents]: extensions/python-markdown.md#table-of-contents
[toc.integrate support]: https://github.com/squidfunk/mkdocs-material/releases/tag/7.3.0
[toc.integrate enabled]: ../assets/screenshots/toc-integrate.png