-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmkdocs.yml
More file actions
182 lines (167 loc) · 6.78 KB
/
mkdocs.yml
File metadata and controls
182 lines (167 loc) · 6.78 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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
# yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json
# Site Information
site_name: Understanding System
site_url: https://localhost:8000/
repo_url: https://github.com/alex-quin-gabriel/understanding-logic
edit_uri: edit/rolling/docs/ # Location of documentation URI
extra_css:
- stylesheets/extra.css
copyright: Designed & Developed by <a href='https://kas-lab.github.io/'>Delft University of Technology</a> 2025
# Navigation structure of the website
nav:
- Home:
- index.md
- Documentation Instructions: documentation-instructions.md
- Usage:
- usage/index.md
- Concepts:
- concepts/index.md
- Agent: concepts/agent.md
- Datatype: concepts/datatype.md
- Engine: concepts/engine.md
- Exertion: concepts/exertion.md
- Extent: concepts/extent.md
- Formalism: concepts/formalism.md
- Modelet: concepts/modelet.md
- Origin: concepts/origin.md
- Phenomenon: concepts/phenomenon.md
- Property: concepts/property.md
- Requirement: concepts/requirement.md
- Representation Class: concepts/representation_class.md
- Space Time Point: concepts/spacetime_point.md
- Strategy: concepts/strategy.md
- Template: concepts/template.md
- Concept: concepts/concept.md
# - System Architecture:
# - architecture/index.md
# - Packages:
# - packages/index.md
- CoreSense: https://coresense.eu/
# - Current Progress: progress.md
# Visual appearance and behavior
theme:
name: material
custom_dir: docs/overrides # Location of customized HTML blocks
logo: assets/images/coresense-logo-reverse.png
favicon: assets/images/cropped-Coresense-Site-Logo-32x32.png
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: custom
accent: custom
toggle:
icon: material/brightness-2
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: custom
accent: custom
toggle:
icon: material/brightness-7
name: Switch to light mode
font:
text: Montserrat
code: Fira Code
features:
- navigation.footer # Show the footer
#- navigation.instant # Preload pages for navigation (incompatible with offline plugin)
#- navigation.instant.preview # Preview pages when hovering over a link <-- feature comming soon!
- navigation.tracking # Add the current section to the URL
- navigation.tabs # Add tabs for top-level pages to the header
#- navigation.path # Show the navigation path at the top of each page <-- feature comming soon!
- navigation.top # Show a 'Back to Top' button
- navigation.indexes # A document can be used as the introduction to a section
- toc.follow # Scroll the table of contents to the current section
#- toc.integrate # Integrate the table of contents into the navigation pane
- search.suggest # Enable search suggestions
- search.highlight # Highlight all occurances after searching
# Add view and edit icons for documentation source
- content.action.edit
- content.action.view
# Globally enable code copying, highlighting, and annotations
- content.code.copy
#- content.code.select
- content.code.annotate
#- content.footnote.tooltips # Enable preview of footnotes <-- feature comming soon!
# icon:
# tag:
# panda: material/robot-industrial
# Plugins which add site functionality
plugins:
- search # Show a search bar
- offline # Enable the search function offline
- tags # Enable tags to help search related pages
#tags_file: tags.md # An index of all of the tags
- glightbox # Enable zooming on images
- git-revision-date-localized: # Show the last revision date at the bottom of each page
type: date
fallback_to_build_date: true
# - git-committers: # Show the people who made commits to the page
# repository: tud-airlab-ros2/albert_ros2_package
# branch: main
- open-in-new-tab
# - multirepo: # Build documentation from other repos
# cleanup: true # (optional) tells multirepo to cleanup the temporary directory after site is built.
# nav_repos:
# - name: backstage # top-level reference in the nav section
# import_url: https://github.com/backstage/backstage
# # forward slash is needed in '/README.md' so that only the README.md in the root
# # directory is imported and not all README.md files.
# imports: [
# docs/publishing.md, docs/integrations/index.md, /README.md,
# # asset files needed
# docs/assets/*
# ]
# - name: old-albert-documentation
# import_url: https://gitlab.tudelft.nl/airlab-delft/ng-staging/albert/albert_documentation
# imports: [
# albert.md, documentation/assets/*
# ]
# - name: old_airlab
# Entra configuration for plugins
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/alex-quin-gabriel/understanding-logic
name: Project Github
# tags:
# Panda: panda
# Boxer: boxer
# Albert: albert
watch: # Directories to check for updates
- ./README.md
# Extensions which affect how Markdown is parsed
markdown_extensions:
- admonition # Enable callouts
- pymdownx.details # Enable collapsible callouts
- footnotes # Enable usage of footnotes
- md_in_html # Enable markdown parsing within HTML elements
- attr_list # Enable Attribute lists for individual content blocks (useful with other plugins)
- def_list # Add definitions list (for nice-looking definitions
- pymdownx.tasklist: # Github markdown style checklists
custom_checkbox: true
- pymdownx.superfences # Enable arbitrary nesting of content blocks
- pymdownx.snippets:
check_paths: true
- pymdownx.critic # Enable special syntax for insertions and deletions
- pymdownx.caret # Enable special syntax for underlining text
- pymdownx.keys # Enable rendering keyboard keys
- pymdownx.mark # Enable special syntax for highlighting text
- pymdownx.tilde # Enable special syntax for strikethrough text
- pymdownx.emoji: # Enable usage of icons and emojis
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight: # Syntax highlighting for code blocks
anchor_linenums: true
use_pygments: true
pygments_lang_class: true
line_spans: __span
- pymdownx.inlinehilite # Optional inline syntax highlights
- pymdownx.tabbed: # Enable content tabs
alternate_style: true
combine_header_slug: true
- toc: # Table of Contents settings
permalink: true # Add permalinks to section headers
toc_depth: 3 # Number of levels in the table of contents