-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
mkdocs.yml
98 lines (90 loc) · 2.45 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
site_name: DeclarativeX
site_description: DeclarativeX is a Python library for building declarative APIs.
strict: true
site_url: https://declarativex.dev
use_directory_urls: true
theme:
name: material
palette:
- media: "(prefers-color-scheme)"
primary: custom
accent: custom
toggle:
icon: material/brightness-auto
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: custom
accent: custom
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: custom
accent: custom
toggle:
icon: material/brightness-4
name: Switch to system preference
features:
- content.code.copy
- navigation.instant
- navigation.instant.prefetch
- content.code.annotate
extra:
analytics:
provider: google
property: G-RZ1VN0YPGC
extra_css:
- stylesheets/extra.css
extra_javascript:
- javascripts/extra.js
nav:
- Home: index.md
- Core Concepts:
- BaseClient: core-concepts/base-client.md
- HTTP Declaration: core-concepts/http-declaration.md
- Dependencies: core-concepts/dependencies.md
- Rate Limiting: core-concepts/rate-limiter.md
- Middlewares: core-concepts/middlewares.md
- Mapping errors: core-concepts/error-mappings.md
- Auto retry: core-concepts/auto-retry.md
- Auth: core-concepts/auth.md
- GraphQL: core-concepts/graphql.md
- API:
- Models: api/models.md
- Exceptions: api/exceptions.md
- Compatibility: compatibility.md
- Testing: testing.md
- Contributing: contributing.md
- License: license.md
repo_name: floydya/declarativex
repo_url: https://github.com/floydya/declarativex
edit_uri: edit/main/docs/
plugins:
- search
markdown_extensions:
- markdown_include.include:
base_path: docs
- admonition
- abbr
- attr_list
- def_list
- md_in_html
- toc:
permalink: true
title: On this page
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.extra
- pymdownx.snippets
- pymdownx.tabbed:
alternate_style: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg