-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yaml
110 lines (106 loc) · 2.66 KB
/
mkdocs.yaml
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
---
site_name: "MyPackage"
site_description: "MyPackage"
site_url: https://my_repo.github.io/my_py_package/
repo_name: my_repo/my_py_package
repo_url: https://github.com/my_repo/my_py_package.git
edit_uri_template: "blob/main/docs/{path}"
copyright: "Copyright © 2024 MyRepo"
theme:
name: material
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
primary: custom-light
accent: blue
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
primary: custom-dark
accent: blue
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
# - announce.dismiss
# - content.action.edit
- navigation.footer
- navigation.indexes
- navigation.instant
- navigation.sections
# - navigation.tabs
- navigation.top
- navigation.tracking
- toc.follow
icon:
repo: material/git
logo: static/images/logo.svg
favicon: static/favicon.ico
include_sidebar: false
markdown_extensions:
- toc:
permalink: true
baselevel: 2
- markdown.extensions.codehilite:
guess_lang: false
- admonition
- codehilite
- extra
- mdx_truly_sane_lists
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
# yamllint disable
format: !!python/name:pymdownx.superfences.fence_code_format ""
# yamllint enable
- pymdownx.tabbed:
alternate_style: true
- mdx_include:
base_path: docs
extra_css:
- static/css/main.css
plugins:
- search:
lang: en
- minify_html
- macros
- autorefs
- privacy
- mkdocstrings:
enabled: true
default_handler: python
handlers:
python:
paths: [.]
options:
filters:
- "!^_"
show_symbol_type_heading: true
show_symbol_type_toc: true
docstring_options:
ignore_init_summary: true
merge_init_into_class: true
docstring_style: numpy
show_submodules: true
show_root_heading: false
show_signature_annotations: true
signature_crossrefs: true
show_source: true
group_by_category: false
show_category_heading: true
nav:
- MyPackage: index.md
- Reference:
- Main: main.md
- Development: development.md