forked from encode/httpx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
38 lines (32 loc) · 943 Bytes
/
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
site_name: HTTPX
site_description: A next-generation HTTP client for Python.
site_url: https://www.python-httpx.org/
theme:
name: 'material'
repo_name: encode/httpx
repo_url: https://github.com/encode/httpx/
edit_uri: ""
nav:
- Introduction: 'index.md'
- QuickStart: 'quickstart.md'
- Advanced Usage: 'advanced.md'
- Async Support: 'async.md'
- HTTP/2 Support: 'http2.md'
- Environment Variables: 'environment_variables.md'
- Requests Compatibility: 'compatibility.md'
- Developer Interface: 'api.md'
- Exceptions: 'exceptions.md'
- Troubleshooting: 'troubleshooting.md'
- Third Party Packages: 'third_party_packages.md'
- Contributing: 'contributing.md'
- Code of Conduct: 'code_of_conduct.md'
markdown_extensions:
- admonition
- codehilite:
css_class: highlight
- mkautodoc
extra_css:
- css/custom.css
extra_javascript:
- 'js/chat.js'
- 'js/sidecar-1.5.0.js'