-
Notifications
You must be signed in to change notification settings - Fork 119
/
mkdocs.yml
78 lines (73 loc) · 1.66 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
site_dir: "site"
site_name: "pyslurm"
site_url: "https://pyslurm.github.io"
repo_url: "https://github.com/PySlurm/pyslurm"
repo_name: "PySlurm/pyslurm"
copyright: Copyright © 2023 PySlurm Developers
nav:
- Home:
- Home: index.md
- Changelog: changelog.md
- ...
theme:
name: "material"
logo: logo.png
features:
- navigation.sections
- navigation.indexes
- navigation.tabs
# - navigation.tabs.sticky
- navigation.top
- content.code.copy
- toc.follow
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
accent: purple
primary: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
accent: lime
primary: black
toggle:
icon: material/brightness-4
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
plugins:
- search
- awesome-pages
- autorefs
- mike
- mkdocstrings:
handlers:
python:
import:
- https://docs.python.org/3/objects.inv
options:
filters: ["!^_"]
docstring_style: google
show_signature: true
show_root_heading: true
show_symbol_type_toc: true
show_symbol_type_heading: true
markdown_extensions:
- admonition
- pymdownx.snippets:
check_paths: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.details
extra:
version:
provider: mike
extra_css:
- stylesheets/extra.css