-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
87 lines (80 loc) · 2.03 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
site_name: "mkdocstrings-python-xref"
site_description: "A an extended Python handler for mkdocstrings."
repo_url: https://github.com/analog-garage/mkdocstrings-python-xref
site_url: https://github.com/analog-garage/mkdocstrings-python-xref
repo_name: GitHub
site_dir: site
site_author: Christopher Barber
copyright: Copyright © 2022-2023 Analog Devices, Inc.
watch:
- src/mkdocstrings_handlers
nav:
- User Guide: index.md
- Setup:
- Installation: install.md
- Configuration: config.md
- Support:
- Getting help: support.md
- Changelog: changelog.md
- License: license.md
theme:
name: material
logo: logo.svg
favicon: logo.svg
features:
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: white
accent: purple
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: lime
toggle:
icon: material/weather-night
name: Switch to light mode
extra:
generator: false
version:
provider: mike
default: stable
markdown_extensions:
- admonition
- pymdownx.snippets:
check_paths: true
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
plugins:
- search
- mike:
# These fields are all optional; the defaults are as below...
canonical_version: stable
version_selector: true
css_dir: css
javascript_dir: js
- mkdocstrings:
default_handler: python_xref
handlers:
python_xref:
paths: [src]
import:
- https://docs.python.org/3/objects.inv
- https://mkdocstrings.github.io/objects.inv
- https://mkdocstrings.github.io/griffe/objects.inv
options:
docstring_style: google
docstring_options:
ignore_init_summary: yes
merge_init_into_class: yes
relative_crossrefs: yes
separate_signature: yes
show_source: no
show_root_full_path: no