-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
119 lines (111 loc) · 2.97 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
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
# SPDX-FileCopyrightText: 2022 Copyright DB InfraGO AG and the capellambse-context-diagrams contributors
# SPDX-License-Identifier: Apache-2.0
site_name: Context diagrams for py-capellambse
repo_name: capellambse-context-diagrams
repo_url: https://github.com/DSD-DBS/capellambse-context-diagrams
watch: [capellambse_context_diagrams, overrides]
theme:
name: material
custom_dir: overrides
icon:
repo: fontawesome/brands/square-github
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/weather-night
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
features:
- navigation.instant
- navigation.tracking
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.expand
- navigation.top
- content.code.annotate
- content.tooltips
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.highlight
- pymdownx.superfences
- pymdownx.inlinehilite
- pymdownx.snippets
- attr_list
- md_in_html
- toc:
permalink: "🔗"
plugins:
- search
- gen-files:
scripts:
- docs/gen_ref_pages.py
- docs/gen_images.py
- section-index
- literate-nav:
nav_file: SUMMARY.md
- autorefs
- mkdocstrings:
handlers:
python:
paths: [capellambse_context_diagrams]
import:
- https://dsd-dbs.github.io/py-capellambse/objects.inv
enable_inventory: yes
options:
docstring_style: numpy
docstring_section_style: spacy
show_docstring_attributes: true
merge_init_into_class: yes
show_submodules: no
show_root_full_path: no
group_by_category: true
separate_signature: yes
line_length: 79
show_signature_annotations: yes
annotations_path: brief
nav:
- Home:
- Overview: index.md
- Quickstart: quickstart.md
- Credits: credits.md
- License: license.md
- Interface Context View:
- Overview: interface.md
- Tree View:
- Overview: tree_view.md
- Realization View:
- Overview: realization_view.md
- DataFlow View:
- Overview: data_flow_view.md
- Cable Tree View:
- Overview: cable_tree.md
- Extras:
- Filters: extras/filters.md
- Styling: extras/styling.md
- Derived: extras/derived.md
- Code Reference: reference/
extra_css:
- css/base.css
extra:
generator: false
social:
- icon: fontawesome/brands/github
link: https://dsd-dbs.github.io/capellambse-context-diagrams/
- icon: custom/db
name: DB InfraGO AG - SET
link: https://github.com/DSD-DBS
copyright: Copyright © 2022 DB InfraGO AG