-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
135 lines (129 loc) · 4.53 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
nav:
# - 'index.md'
# - 'Eindgebruikers':
- 'Voor organisaties':
- 'docs/organisations/index.md'
# - 'docs/organisations/getting-started.md'
# - 'docs/organisations/hosting.md'
# - 'docs/organisations/personalisering.md'
- 'Ondersteuning':
- 'docs/organisations/cors.md'
- 'Voor ontwikkelaars':
- 'docs/developers/introduction.md'
- 'Platform Architecture':
- 'Platform Overview': 'docs/developers/platform-architecture.md'
- 'docs/developers/functionalities.md'
# - 'Getting Started':
# - 'docs/developers/getting-started/using-the-twin.md'
# - 'docs/developers/getting-started/from-scratch.md'
# - 'docs/developers/getting-started/your-own-functionality.md'
- 'Guides':
- 'docs/developers/quickstart.md'
- 'docs/developers/adding-a-simple-type-of-layer.md'
- 'docs/developers/adding-behaviour-to-a-layer-with-data.md'
- 'docs/developers/guides/dealing-with-cors-issues.md'
- 'Explanation':
- 'Core Concepts':
- 'Overview': 'docs/developers/core-concepts.md'
- 'docs/developers/projects.md'
- 'docs/developers/layers.md'
- 'docs/developers/layers-with-authentication.md'
- 'Features':
- 'docs/developers/features/embedding.md'
- 'docs/developers/features/floating-origin.md'
- 'docs/developers/features/geojson.md'
- 'Packages':
- 'docs/developers/packages/creating-and-managing.md'
- 'User interface':
- 'docs/developers/ui/introduction.md'
- 'docs/developers/ui/keeping-our-documentation-current.md'
- 'docs/developers/ui/understanding-blocks.md'
- 'docs/developers/ui/understanding-components.md'
- 'Reference':
- 'Architectural Decisions':
- 'docs/developers/decisions/index.md'
- 'docs/developers/decisions/20241009-styling-of-layers.md'
- 'User interface':
- 'Blocks':
- 'docs/developers/ui/blocks/property-panel-and-sections.md'
- 'Components':
- 'docs/developers/ui/components/accordion.md'
- 'docs/developers/ui/components/cards.md'
- 'docs/developers/ui/components/sliders.md'
- 'docs/developers/ui/components/double-sliders.md'
- 'docs/developers/ui/components/text-fields.md'
- 'Contributing':
- 'docs/developers/contributing/coding-standards.md'
- 'docs/developers/contributing/documentation.md'
# - 'Artikelen':
# - 'articles/index.md'
# - 'Over ons':
# - 'about-us/index.md'
# Draft articles that should be visible when locally building and to have a nav entry, but unavailable in the
# build
# https://www.mkdocs.org/user-guide/configuration/#draft_docs
draft_docs: |
about-us/index.md
docs/developers/ui/locating-components-in-unity.md
docs/organisations/getting-started.md
docs/organisations/hosting.md
docs/organisations/personalisering.md
# Includes, starting with an underscore - https://www.mkdocs.org/user-guide/configuration/#not_in_nav
not_in_nav: |
index.md
_*.md
site_name: "" # Empty on purpose for style purposes
theme:
name: material
logo: images/logo.png
favicon: images/favicon.ico
language: nl
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: white
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.indexes
- navigation.sections
- navigation.tabs
- navigation.instant
- navigation.path
- navigation.footer
- navigation.tracking
- content.tabs.link
extra_css:
- stylesheets/extra.css
plugins:
- search:
- blog:
blog_dir: articles
categories_url_format: "{slug}"
markdown_extensions:
- admonition
- attr_list
- md_in_html
- pymdownx.details
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.caret
- pymdownx.mark
- pymdownx.snippets
- pymdownx.tilde
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.tabbed:
alternate_style: true