-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
58 lines (52 loc) · 1.32 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
site_name: Httperactor
repo_url: https://github.com/tom-bartk/httperactor
theme:
name: material
icon:
logo: material/chat-box
palette:
scheme: gruvbox
font: false
nav:
- Overview: "index.md"
- Installation: "installation.md"
- Quickstart: "quickstart.md"
- Advanced Usage: "advanced.md"
- API Documentation:
- HttpInteractor: "api/interactor.md"
- Request: "api/request.md"
- HttpClient: "api/client.md"
- AuthMiddleware: "api/auth.md"
- ErrorHandler: "api/error_handler.md"
- HttpMethod: "api/method.md"
extra_css:
- "css/extra.css"
plugins:
- autorefs
- mkdocstrings:
handlers:
python:
paths: [src]
options:
members_order: source
separate_signature: true
show_symbol_type_heading: true
show_source: false
show_bases: false
show_root_heading: true
show_root_full_path: false
docstring_options:
ignore_init_summary: true
merge_init_into_class: false
line_length: 90
show_signature_annotations: true
markdown_extensions:
- tables
- toc:
permalink: true
title: Page contents
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true