-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
65 lines (65 loc) · 1.39 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
---
site_name: ExPECA
extra_css:
- stylesheets/extra.css
theme:
palette:
scheme: default
primary: indigo
accent: amber
logo: assets/kth_logo.png
name: material
custom_dir: overrides
font:
text: Ubuntu
code: JetBrains Mono
icon:
# logo: fontawesome/solid/server
repo: fontawesome/brands/github
admonition: {}
features:
- navigation.instant
- navigation.tabs
- navigation.sections
- navigation.expand
- navigation.top
- toc.integrate
copyright: Copyright © 2023 - EXPECA Project Group at KTH Royal Institute of Technology
markdown_extensions:
- def_list
- attr_list
- admonition
- pymdownx.details
- footnotes
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.highlight:
linenums: yes
linenums_style: pymdownx-inline
- pymdownx.superfences
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.snippets
- toc:
permalink: 🔗
plugins:
- meta
- blog:
blog_dir: .
archive: false
categories: false
- tags
- search
- awesome-pages
- git-revision-date-localized:
type: timeago
enable_creation_date: true
fallback_to_build_date: true
nav:
- Home: index.md
- Getting started: start.md
- Hardware discovery: inventory.md
- Testbed map: map.md
- About: about.md
...