Skip to content

Commit c527aa0

Browse files
Bump the dependencies group with 4 updates (#1056)
* Bump the dependencies group with 4 updates Bumps the dependencies group with 4 updates: [mkdocs](https://github.com/mkdocs/mkdocs), [mkdocs-codeinclude-plugin](https://github.com/rnorth/mkdocs-codeinclude-plugin), [mkdocs-markdownextradata-plugin](https://github.com/rosscdh/mkdocs-markdownextradata-plugin) and [mkdocs-material](https://github.com/squidfunk/mkdocs-material). Updates `mkdocs` from 1.4.2 to 1.6.1 - [Release notes](https://github.com/mkdocs/mkdocs/releases) - [Commits](mkdocs/mkdocs@1.4.2...1.6.1) Updates `mkdocs-codeinclude-plugin` from 0.2.0 to 0.2.1 - [Release notes](https://github.com/rnorth/mkdocs-codeinclude-plugin/releases) - [Commits](rnorth/mkdocs-codeinclude-plugin@0.2.0...0.2.1) Updates `mkdocs-markdownextradata-plugin` from 0.2.5 to 0.2.6 - [Release notes](https://github.com/rosscdh/mkdocs-markdownextradata-plugin/releases) - [Commits](rosscdh/mkdocs-markdownextradata-plugin@0.2.5...0.2.6) Updates `mkdocs-material` from 8.5.11 to 9.6.15 - [Release notes](https://github.com/squidfunk/mkdocs-material/releases) - [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG) - [Upgrade guide](https://github.com/squidfunk/mkdocs-material/blob/master/docs/upgrade.md) - [Commits](squidfunk/mkdocs-material@8.5.11...9.6.15) --- updated-dependencies: - dependency-name: mkdocs dependency-version: 1.6.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: mkdocs-codeinclude-plugin dependency-version: 0.2.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: mkdocs-markdownextradata-plugin dependency-version: 0.2.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: mkdocs-material dependency-version: 9.6.15 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies ... Signed-off-by: dependabot[bot] <[email protected]> * Fix docs --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Cristian Greco <[email protected]>
1 parent 400585f commit c527aa0

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

docs/site/theme/partials/nav.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
-->
1919

2020
<!-- Determine class according to configuration -->
21+
{% import "partials/nav-item.html" as item with context %}
2122
{% set class = "md-nav md-nav--primary" %}
2223
{% if "navigation.tabs" in features %}
2324
{% set class = class ~ " md-nav--lifted" %}
@@ -45,8 +46,7 @@
4546
<ul class="md-nav__list" data-md-scrollfix>
4647
{% for nav_item in nav %}
4748
{% set path = "__nav_" ~ loop.index %}
48-
{% set level = 1 %}
49-
{% include "partials/nav-item.html" %}
49+
{{ item.render(nav_item, path, 1) }}
5050
{% endfor %}
5151
<li class="community-callout-wrapper">
5252
<div class="community-callout">

mkdocs.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ markdown_extensions:
3030
- pymdownx.superfences
3131
- pymdownx.tabbed:
3232
alternate_style: true
33+
- toc:
34+
permalink: true
3335

3436
nav:
3537
- Home: index.md

requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
mkdocs==1.4.2
2-
mkdocs-codeinclude-plugin==0.2.0
3-
mkdocs-markdownextradata-plugin==0.2.5
4-
mkdocs-material==8.5.11
1+
mkdocs==1.6.1
2+
mkdocs-codeinclude-plugin==0.2.1
3+
mkdocs-markdownextradata-plugin==0.2.6
4+
mkdocs-material==9.6.15

0 commit comments

Comments
 (0)