-
Notifications
You must be signed in to change notification settings - Fork 39
/
mkdocs.yaml
48 lines (43 loc) · 1.14 KB
/
mkdocs.yaml
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
site_name: RESPX
site_description: A utility for mocking out the Python HTTPX library.
site_url: https://lundberg.github.io/respx/
theme:
name: "material"
icon:
logo: "material/school"
palette:
- scheme: default
media: "(prefers-color-scheme: light)"
primary: "deep purple"
accent: "deep purple"
toggle:
icon: material/weather-night
name: Switch to dark mode
- scheme: slate
media: "(prefers-color-scheme: dark)"
primary: "deep purple"
accent: "deep purple"
toggle:
icon: material/weather-sunny
name: Switch to light mode
extra_css:
- stylesheets/slate.css
repo_name: lundberg/respx
repo_url: https://github.com/lundberg/respx
edit_uri: ""
nav:
- Introduction: "index.md"
- User Guide: "guide.md"
- API Reference: "api.md"
- Test Case Examples: "examples.md"
- Migrate from requests: "migrate.md"
- Upgrading: "upgrade.md"
- Older Versions:
- 0.14.0:
- Mock HTTPX: "versions/0.14.0/mocking.md"
- Developer Interface: "versions/0.14.0/api.md"
markdown_extensions:
- admonition
- codehilite:
css_class: highlight
- mkautodoc