mkdocs.yml: add
This commit is contained in:
parent
7e36691eda
commit
9565a038b6
1 changed files with 69 additions and 0 deletions
69
mkdocs.yml
Normal file
69
mkdocs.yml
Normal file
|
@ -0,0 +1,69 @@
|
|||
site_name: Ampel Documentation
|
||||
site_url: https://docs.ampel.dev
|
||||
copyright: This work is dedicated to the public domain under the Creative Commons CC0 public domain dedication.
|
||||
|
||||
|
||||
repo_name: ampel/docs
|
||||
repo_url: https://git.ampel.dev/ampel/docs
|
||||
|
||||
extra:
|
||||
generator: false
|
||||
|
||||
theme:
|
||||
name: material
|
||||
features:
|
||||
- navigation.instant
|
||||
- navigation.instant.progress
|
||||
- navigation.indexes
|
||||
- navigation.tabs
|
||||
- navigation.sections
|
||||
- toc.follow
|
||||
- search.suggest
|
||||
- search.highlight
|
||||
- search.share
|
||||
- content.tabs.link
|
||||
- content.code.copy
|
||||
- content.code.annotate
|
||||
# logo: assets/ampel-logo.png
|
||||
# favicon: assets/ampel-logo.png
|
||||
palette:
|
||||
- media: "(prefers-color-scheme: light)"
|
||||
scheme: default
|
||||
primary: white
|
||||
accent: blue
|
||||
toggle:
|
||||
icon: material/brightness-7
|
||||
name: Switch to dark mode
|
||||
- media: "(prefers-color-scheme: dark)"
|
||||
scheme: slate
|
||||
primary: black
|
||||
accent: teal
|
||||
toggle:
|
||||
icon: material/brightness-3
|
||||
name: Switch to light mode
|
||||
|
||||
markdown_extensions:
|
||||
- admonition
|
||||
- attr_list
|
||||
- md_in_html
|
||||
- pymdownx.details
|
||||
- pymdownx.superfences
|
||||
- pymdownx.tabbed:
|
||||
alternate_style: true
|
||||
- pymdownx.highlight:
|
||||
anchor_linenums: true
|
||||
line_spans: __span
|
||||
pygments_lang_class: true
|
||||
- pymdownx.inlinehilite
|
||||
- pymdownx.snippets
|
||||
|
||||
plugins:
|
||||
- search
|
||||
- tags
|
||||
|
||||
nav:
|
||||
- 'Home': index.md
|
||||
- 'Zlevis':
|
||||
- zlevis/index.md
|
||||
- 'Functionality': zlevis/functionality.md
|
||||
- 'Implementation': zlevis/implementation.md
|
Loading…
Add table
Add a link
Reference in a new issue