-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
64 lines (64 loc) · 1.68 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
site_name: Aloha - a versatile Python library to build microservice.
repo_url: https://github.com/QPod/aloha
edit_uri: blob/main/doc/
docs_dir: doc
theme:
name: material
highlightjs: true
features:
- navigation.tabs
- navigation.tabs.sticky
- navigation.expand
- navigation.top
- toc.integrate
- content.tabs.link
- content.code.annotate
palette:
- media: "(prefers-color-scheme: light)" # Palette toggle for light mode
scheme: default
primary: black
accent: blues
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)" # Palette toggle for dark mode
scheme: slate
primary: black
accent: blue
toggle:
icon: material/brightness-4
name: Switch to light mode
plugins:
- search
- mkdocstrings:
handlers: # See: https://mkdocstrings.github.io/python/usage/
python:
options:
docstring_style: sphinx
markdown_extensions:
- admonition
- attr_list
- def_list
- toc:
permalink: true
- markdown_include.include:
base_path: .
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
nav:
- Introduction: 'index.md'
- Get Started: 'README-get-start.md'
- Common Tasks: 'README-tasks.md'
- Configs: 'README-config.md'
- Development Guide: 'README-develop.md'
- API Reference: 'api.md'