-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmkdocs.yml
More file actions
80 lines (73 loc) · 2.04 KB
/
mkdocs.yml
File metadata and controls
80 lines (73 loc) · 2.04 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
site_name: ScientISST Sense API Python
#site_url: https://example.com/
repo_url: https://github.com/scientisst/scientisst-sense-api-python
repo_name: scientisst/scientisst-sense-api-python
nav:
- Home: index.md
- Installation: installation.md
- Getting started:
- sense.py: getting-started/sense.md
- API: getting-started/api.md
- API Reference:
- ScientISST: reference/scientisst-reference.md
- Exceptions: reference/exceptions-reference.md
- Frame: reference/frame-reference.md
- State: reference/state-reference.md
theme:
name: material
highlightjs: true
hljs_languages:
- python
logo: img/logo.png
favicon: img/favicon.ico
icon:
repo: fontawesome/brands/github
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/weather-sunny
name: Switch to dark mode
primary: amber
accent: amber
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/weather-night
name: Switch to light mode
accent: amber
features:
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
extra:
social:
- icon: fontawesome/solid/globe
link: https://scientisst.com
- icon: fontawesome/brands/facebook
link: https://www.facebook.com/ScientISSThub
- icon: fontawesome/brands/github
link: https://github.com/ScientISST
- icon: fontawesome/brands/instagram
link: https://www.instagram.com/scientissthub/
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/company/scientisst
- icon: fontawesome/brands/twitter
link: https://twitter.com/ScientISSThub
extra_css:
- css/extra.css
copyright: Copyright © 2020 - 2021 ScientISST
plugins:
- search
- git-revision-date
- mkdocstrings:
handlers:
python:
rendering:
show_root_heading: yes
markdown_extensions:
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.snippets
- attr_list