-
Notifications
You must be signed in to change notification settings - Fork 3
/
mkdocs.yml
97 lines (90 loc) · 2.88 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
site_name: SEEREP Documentation
site_description: Documentation for the SEemantic Environment REpresentation (SEEREP)
site_author: Mark Niemeyer, Julian Arkenau, Marc Meijer
repo_url: https://github.com/agri-gaia/seerep
repo_name: agri-gaia/seerep
edit_uri: edit/main/docs/mkdocs
docs_dir: docs/mkdocs
theme:
name: material
features:
- navigation.tracking
- navigation.instant
- navigation.top
- navigation.tabs
- navigation.expand
- navigation.indexes
- content.code.copy
- content.tabs
- content.action.edit
- search.suggest
language: en
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: custom
accent: custom
toggle:
icon: material/lightbulb
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: custom
accent: custom
toggle:
icon: material/lightbulb-outline
name: Switch to light mode
icon:
repo: fontawesome/brands/github
edit: material/pencil
logo: imgs/Seerep_Logo_White.svg
favicon: imgs/Seerep_Favicon.png
font:
text: IBM Plex Sans
code: IBM Plex Mono
markdown_extensions:
- admonition
- pymdownx.highlight:
anchor_linenums: true
# allow references to code blocks for more direct examples
- pymdownx.snippets:
url_download: true
- pymdownx.superfences
- pymdownx.keys
- pymdownx.tabbed:
alternate_style: true
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- md_in_html
- toc:
permalink: true
nav:
- Home: 'home/index.md'
- Getting started:
- Development Setup: 'getting-started/dev_setup.md'
- Server Deployment: 'getting-started/server_deployment.md'
- gRPC Clients: 'getting-started/grpc_clients.md'
- Documentation Setup: 'getting-started/docs.md'
- Test Setup: 'getting-started/tests.md'
- Kown Issues: 'getting-started/known_issues.md'
- Reference:
- gRPC API: reference/api.md
- Package Overview: 'reference/packages.md'
- Flatbuffers Abstractions: 'reference/pytests-message-abstractions.md'
- Python Helpers: 'reference/python-helpers.md'
- Tutorials:
- Overview: 'tutorials/overview.md'
- Creating & retrieving projects: 'tutorials/projects.md'
- Sending & Querying Images: 'tutorials/images.md'
- Writing Python Tests: 'tutorials/writing-python-tests.md'
- Writing Python Examples: 'tutorials/writing-python-examples.md'
copyright: Copyright © 2021 - 2024 Deutsches Forschungszentrum für Künstliche Intelligenz GmbH (DFKI) <br>
<a href="/seerep/mkdocs/legal-notice/index.html">Legal Notice</a> - <a href="/seerep/mkdocs/data-protection-notice/index.html">Data Protection Notice</a>
extra_css:
- stylesheets/extra.css
plugins:
- search
- privacy
- glightbox