diff options
Diffstat (limited to 'mkdocs.yml')
| -rw-r--r-- | mkdocs.yml | 14 | 
1 files changed, 13 insertions, 1 deletions
| @@ -49,7 +49,8 @@ plugins:    # Awesome Pages Plugin    # https://github.com/lukasgeiter/mkdocs-awesome-pages-plugin -  awesome-pages: {} +  awesome-pages: +    collapse_single_pages: true    # The built-in privacy plugin automatically identifies external assets as    # part of the build process and downloads all assets for very simple @@ -81,6 +82,13 @@ plugins:          nav_translations:            Provedor: Provider +  # Redirects +  # https://github.com/mkdocs/mkdocs-redirects +  # In case site re-structure is needed, this plugin will ensure permalink functionality +  #- redirects: +  #    redirect_maps: +  #      'somepage.md' : 'otherpage.md' +  # Markdown extensions  # See https://www.mkdocs.org/user-guide/configuration/#markdown_extensions  #     https://squidfunk.github.io/mkdocs-material/setup/extensions/ @@ -94,8 +102,12 @@ markdown_extensions:    pymdownx.tasklist:      custom_checkbox: true +  # Admonitions +  # https://squidfunk.github.io/mkdocs-material/reference/admonitions/    admonition: {} +  # Details +  # https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#details    pymdownx.details: {}  # Copyright notice | 
