-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmkdocs.yml
More file actions
150 lines (141 loc) · 4.09 KB
/
mkdocs.yml
File metadata and controls
150 lines (141 loc) · 4.09 KB
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
site_name: COMPAS Invocations 2
site_url: https://compas-dev.github.io/compas_invocations2
repo_url: https://github.com/compas-dev/compas_invocations2
repo_name: compas-dev/compas_invocations2
edit_uri: blob/main/docs/
copyright: Copyright © 2026, COMPAS Association
extra:
homepage: https://compas-dev.github.io/compas_invocations2
version:
provider: mike
theme:
name: material
palette:
# Palette toggle for light mode
- scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/brightness-4
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
logo: _logo/compas_logo_white_transparent.png
favicon: _logo/favicon.ico
features:
- content.code.copy
- content.footnote.tooltips
- navigation.expand
- navigation.footer
- navigation.indexes
- navigation.sections
- navigation.top
- search.highlight
- search.suggest
- toc.follow
extra_css:
- assets/stylesheets/custom.css
markdown_extensions:
- abbr
- attr_list
- admonition
- callouts:
strip_period: no
- footnotes
- md_in_html
- pymdownx.blocks.caption
- pymdownx.caret
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.keys
- pymdownx.mark
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets:
check_paths: true
- toc:
permalink: "¤"
- pymdownx.superfences:
# make exceptions to highlighting of code:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:mermaid2.fence_mermaid_custom
plugins:
- search
- mermaid2
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [src] # search packages in the src folder
inventories:
- https://docs.python.org/3/objects.inv
- https://compas.dev/compas/latest/objects.inv
options:
allow_inspection: true
backlinks: tree
docstring_options:
ignore_init_summary: true
trim_doctest_flags: true
docstring_style: numpy
docstring_section_style: list
filters: public
group_by_category: true
heading_level: 2
inheritance_diagram_direction: TD
inherited_members: false
line_length: 88
merge_init_into_class: true
modernize_annotations: true
parameter_headings: false
preload_modules: [mkdocstrings, compas]
relative_crossrefs: true
scoped_crossrefs: true
separate_signature: true
show_bases: false
show_category_heading: true
show_docstring_attributes: true
show_docstring_functions: true
show_docstring_modules: false
show_if_no_docstring: false
show_inheritance_diagram: false
show_root_heading: true
show_root_full_path: true
show_signature: true
show_signature_annotations: true
show_signature_type_parameters: true
show_source: false
show_submodules: false
show_symbol_type_heading: true
show_symbol_type_toc: true
signature_crossrefs: true
summary:
modules: false
type_parameter_headings: true
unwrap_annotated: true
nav:
- Home: index.md
- Installation: installation.md
- API Reference:
- Build Tasks: api/build.md
- Console Tasks: api/console.md
- Documentation Tasks: api/docs.md
- Style Tasks: api/style.md
- Test Tasks: api/tests.md
- License: license.md