-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
72 lines (68 loc) · 1.98 KB
/
mkdocs.yml
File metadata and controls
72 lines (68 loc) · 1.98 KB
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
site_name: python-jsonrpc-lib
site_description: Simple, yet solid - Type-safe JSON-RPC 1.0/2.0 with OpenAPI support
site_url: https://uandysmith.github.io/python-jsonrpc-lib/
repo_url: https://github.com/uandysmith/python-jsonrpc-lib
repo_name: python-jsonrpc-lib
theme:
name: material
palette:
- scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.tabs
- navigation.sections
- navigation.top
- navigation.tracking
- search.suggest
- search.highlight
- content.code.copy
- content.code.annotate
nav:
- Home: index.md
- Philosophy: philosophy.md
- Tutorial:
- 1. Hello World: tutorial/01-hello-world.md
- 2. Method Classes: tutorial/02-method-classes.md
- 3. Parameters: tutorial/03-parameters.md
- 4. Nested Types: tutorial/04-nested-types.md
- 5. Context: tutorial/05-context.md
- 6. Groups: tutorial/06-groups.md
- 7. OpenAPI: tutorial/07-openapi.md
- Integrations:
- Flask: integrations/flask.md
- FastAPI: integrations/fastapi.md
- Custom: integrations/custom.md
- Advanced:
- Async Methods: advanced/async.md
- Batch Requests: advanced/batch.md
- Protocol Versions: advanced/protocols.md
- Middleware: advanced/middleware.md
- API Reference: api-reference.md
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- admonition
- pymdownx.details
- attr_list
- def_list
- tables
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
plugins:
- search