Skip to content

Commit

Permalink
Improved mkdocs.yml - master branch - PR 1 of 2
Browse files Browse the repository at this point in the history
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).
  • Loading branch information
Paraphraser committed May 7, 2021
1 parent 67b4f00 commit 722c356
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ site_description: 'Docker stack for getting started on IOT on the Raspberry PI'
theme:
name: material
features:
- tabs
plugins:
- search
- awesome-pages
- navigation.tabs
plugins:
- search
- awesome-pages
markdown_extensions:
- pymdownx.superfences

0 comments on commit 722c356

Please sign in to comment.