-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
68 lines (65 loc) · 1.74 KB
/
mkdocs.yml
File metadata and controls
68 lines (65 loc) · 1.74 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
---
site_name: "JumpStart Docs"
site_description: "Documentation for CSH Jumpstart System"
theme:
name: material
palette:
- scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/brightness-2
name: Switch to light mode
features:
- navigation.tabs
- navigation.tops
- navigation.expand
- navigation.instant
- navigation.sections
- navigation.tracking
- navigation.search.highlight
- navigation.search.shareable
- navigation.search.suggest
- navigation.search.suggest.indexes
- navigation.search.suggest.terms
- navigation.search.suggest.results
- navigation.search.suggest.results.indexes
logo: images/jumpstart_half.png
favicon: images/jumpstart_small.png
use_directory_urls: false
nav:
- Home: index.md
- Getting Started: getting-started/getting-started.md
- Backend:
- Calendar: core/csh_calendar.md
- Slack: core/slack.md
- Wikithoughts: core/wikithoughts.md
- Endpoints:
- Calendar: endpoints/csh_calendar.md
- Slack: endpoints/slack.md
- Wikithoughts: endpoints/wikithoughts.md
- Themes:
- Themes: themes/overview.md
- Adding Your Own: themes/how_to.md
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
paths: ["src"]
options:
heading_level: 3
show_source: true
docstring_style: google
show_root_heading: false
show_root_full_path: false
show_signature: false
filters:
- ".*"