-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
74 lines (64 loc) · 1.55 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
site_name: Arrest
site_author: Shiladitya Bose
theme:
name: material
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: purple
accent: light purple
toggle:
icon: material/lightbulb
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: deep purple
accent: purple
toggle:
icon: material/lightbulb-outline
name: Switch to light mode
features:
- navigation.sections
- navigation.tabs
- content.code.copy
- toc.integrate
nav:
- Introduction: index.md
- Getting Started:
- getting-started.md
- Examples: examples.md
- Configuring your request: configuring-request.md
- Resources and Services: resources-services.md
- OpenAPI Integration: openapi.md
- Developer's Note: dev-note.md
- API Documentation: api.md
- Release Notes: release-notes.md
- What's New?: whats-new.md
markdown_extensions:
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- admonition
- pymdownx.details
- pymdownx.tasklist:
custom_checkbox: true
clickable_checkbox: false
- attr_list
- toc:
permalink: true
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
options:
heading_level: 4
merge_init_into_class: true
watch:
- mkdocs.yml
- .readthedocs.yaml
- arrest
- docs