-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
112 lines (105 loc) · 2.81 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
site_name: Qik
site_description: A cached command runner for Python monorepos.
docs_dir: docs
repo_name: Opus10/qik
repo_url: https://github.com/Opus10/qik
plugins:
- search
- blog
- mkdocstrings:
handlers:
python:
import:
- https://docs.python.org/3/objects.inv
- https://installer.readthedocs.io/en/stable/objects.inv
- https://mkdocstrings.github.io/autorefs/objects.inv
options:
docstring_options:
ignore_init_summary: true
line_length: 80
heading_level: 2
merge_init_into_class: true
separate_signature: true
show_root_heading: true
show_root_full_path: true
show_root_members_full_path: true
show_signature_annotations: true
show_symbol_type_heading: true
show_symbol_type_toc: true
signature_crossrefs: true
markdown_extensions:
# For admonitions
- admonition
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- tables
- pymdownx.tabbed:
alternate_style: true
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
theme:
custom_dir: docs/overrides
name: material
logo: static/logo.png
favicon: static/logo.png
features:
- navigation.footer
- navigation.path
- navigation.sections
- navigation.tabs
- navigation.tracking
- search.suggest
- search.highlight
- toc.follow
- content.code.copy
- content.code.annotate
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: custom
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: custom
toggle:
icon: material/brightness-4
name: Switch to light mode
extra_css:
- css/mkdocstrings.css
- css/mkdocs-material.css
nav:
- Home: index.md
- Guide:
- Intro: guide.md
- Spaces: spaces.md
- Commands: commands.md
- Context: context.md
- Caching: caching.md
- Plugins:
- Intro: plugin_intro.md
- Pygraph: plugin_pygraph.md
- UV: plugin_uv.md
- S3: plugin_s3.md
- Help:
- Resources: resources.md
- Troubleshooting: errors.md
- Cookbook:
- Intro: cookbook_intro.md
- Spaces: cookbook_spaces.md
- Commands: cookbook_commands.md
- CLI: cookbook_cli.md
- CI/CD: cookbook_cicd.md
- Blog: blog/index.md
- Roadmap: roadmap.md
- Release Notes: release_notes.md
- Contributing: contributing.md