-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
53 lines (45 loc) · 1.3 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
site_name: Linked Services
site_url: https://breathecode.herokuapp.com/
repo_name: breatheco-de/linked-services-django-plugin
repo_url: https://github.com/breatheco-de/linked-services-django-plugin
edit_uri: ""
theme:
name: 'material'
palette:
- scheme: 'default'
media: '(prefers-color-scheme: light)'
toggle:
icon: 'material/lightbulb'
name: "Switch to dark mode"
- scheme: 'slate'
media: '(prefers-color-scheme: dark)'
primary: 'blue'
toggle:
icon: 'material/lightbulb-outline'
name: 'Switch to light mode'
features:
- navigation.sections
# this define the order of menu
nav:
- index.md
- Getting started:
- "getting-started/installation.md"
- "getting-started/set-up.md"
- "getting-started/services.md"
- "getting-started/scopes.md"
- "getting-started/views.md"
- Extending service:
- "extending-service/rest-frameworks.md"
- "extending-service/http-clients.md"
- Extending scope and ascope:
- "extending-scope/rest-frameworks.md"
plugins:
- search
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
extra_css:
- css/custom.css