-
Notifications
You must be signed in to change notification settings - Fork 3
/
mkdocs.yml
79 lines (72 loc) · 1.98 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
site_name: KielMotionAnalysisToolbox
extra_css:
- 'style.css'
plugins:
- search
- mkdocs-jupyter
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [kielmat]
options:
verbose: True
theme:
name: material
logo: kielmat_logo_transBG.png
language: en
font:
text: "Roboto"
code: "Roboto Mono"
palette:
- scheme: default
primary: light green
accent: purple
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
primary: deep purple # primary color for dark mode
accent: blue grey
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.tabs
nav:
- Home: index.md
- Examples:
- examples/index.md
- Load data into KielMAT: examples/basic_00_load_Data_into_KielMAT.md
- Load datasets: examples/basic_01_load_dataset.md
- Events in dataclass: examples/basic_02_events.md
- Gait Sequence Detection: examples/modules_01_gsd.md
- Initial Contact Detection: examples/modules_02_icd.md
- Dataclass: dataclass.md
- Modules:
- modules/index.md
- Gait Sequence Detection: modules/gsd.md
- Initial Contact Detection: modules/icd.md
- Physical Activity Monitoring: modules/pam.md
- Postural Transition Detection: modules/ptd.md
- Turn Detection: modules/td.md
- Datasets:
- datasets/index.md
- KeepControl: datasets/keepcontrol.md
- Mobilise-D: datasets/mobilised.md
- Utilities:
- utils/index.md
- Data Preprocessing: utils/preprocessing.md
- Data Import: utils/importers.md
- Orientation Estimation: utils/orientation_estimation.md
- FAQ / Troubleshooting: faq.md
- Contributing:
- contributing.md
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format