-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yaml
110 lines (107 loc) · 2.72 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: niceML
site_url: https://niceml.io/
repo_url: https://github.com/codecentric-oss/niceml
repo_name: codecentric-oss/niceml
edit_uri: edit/main/docs/
theme:
name: material
font:
text: Source Sans Pro
icon:
repo: fontawesome/brands/github
edit: material/pencil
view: material/eye
logo: material/ice-cream
features:
# - navigation.tabs
# - navigation.top
- navigation.footer
- navigation.instant
- navigation.indexes
- navigation.sections
- navigation.path
# - toc.integrate
- toc.follow
- search.suggest
- search.highlight
- content.tooltips
- content.tabs.link
- content.code.annotation
- content.code.copy
- content.action.edit
- content.action.view
language: en
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/weather-night
name: Switch to dark mode
primary: teal
accent: amber
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/weather-sunny
name: Switch to light mode
primary: teal
accent: yellow
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/codecentric-oss/niceml
markdown_extensions:
- toc:
permalink: True
- def_list
- mdx_include:
base_path: docs
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- admonition
- pymdownx.arithmatex:
generic: true
- footnotes
- pymdownx.details
- pymdownx.superfences
- pymdownx.snippets
- pymdownx.mark
- attr_list
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
plugins:
- mkdocstrings:
default_handler: python
handlers:
python:
options:
allow_inspection: true
show_root_heading: true
show_root_toc_entry: true
show_root_full_path: false
show_root_members_full_path: false
show_category_heading: true
merge_init_into_class: true
ignore_init_summary: true
docstring_section_style: list
separate_signature: true
- section-index
- search
- table-reader
- gen-files:
scripts:
- docs/jobs/jobsdoc.py
- docs/jobs/apidocs.py
- literate-nav:
implicit_index: true
nav_file: SUMMARY.md
copyright: |
© 2023 <a href="https://www.codecentric.de/" target="_blank" rel="noopener">codecentric AG</a>