Skip to content

Commit 722c356

Browse files
committed
Improved mkdocs.yml - master branch - PR 1 of 2
The existing mkdocs.yml needs improvement. Currently, it contains: 1. Syntax errors: * `plugins:` should be at the same level as `theme:` 2. A deprecated directive: * the `tabs` feature should be expressed as `navigation.tabs` 3. A missing extension required for proper formatting of the IOTstack Wiki: ``` markdown_extensions: - pymdownx.superfences ``` See [squidfunk/mkdocs-material issues 2639](squidfunk/mkdocs-material#2639).
1 parent 67b4f00 commit 722c356

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

mkdocs.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ site_description: 'Docker stack for getting started on IOT on the Raspberry PI'
33
theme:
44
name: material
55
features:
6-
- tabs
7-
plugins:
8-
- search
9-
- awesome-pages
6+
- navigation.tabs
7+
plugins:
8+
- search
9+
- awesome-pages
10+
markdown_extensions:
11+
- pymdownx.superfences

0 commit comments

Comments
 (0)