File: mkdocs.yml

package info (click to toggle)
httpcore 1.0.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 868 kB
  • sloc: python: 9,383; sh: 101; makefile: 41
file content (36 lines) | stat: -rw-r--r-- 837 bytes parent folder | download | duplicates (2)
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
site_name: HTTPCore
site_description: A minimal HTTP client for Python.
site_url: https://www.encode.io/httpcore/

repo_name: encode/httpcore
repo_url: https://github.com/encode/httpcore/

nav:
    - Introduction: 'index.md'
    - Quickstart: 'quickstart.md'
    - Connection Pools: 'connection-pools.md'
    - Proxies: 'proxies.md'
    - HTTP/2: 'http2.md'
    - Async Support: 'async.md'
    - Network Backends: 'network-backends.md'
    - Extensions: 'extensions.md'
    - Logging: 'logging.md'
    - Exceptions: 'exceptions.md'

theme:
  name: "material"

plugins:
    - search
    - mkdocstrings:
        default_handler: python
        watch:
            - httpcore
        handlers:
            python:
                members_order:
                    - "source"

markdown_extensions:
  - codehilite:
      css_class: highlight