-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
127 lines (117 loc) · 3.25 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
# Title of the site
site_name: "Reqsnaked"
site_url: https://deknowny.github.io/reqsnaked/
site_description: Reqsnaked python library guide
repo_url: https://github.com/deknowny/reqsnaked/
edit_uri: blob/main/guide/
remote_branch: main
docs_dir: guide
site_author: Deknowny
# Site's content
nav:
- Home: index.md
- User guide:
- Introduction: user-guide/index.md
- Understand the basics: user-guide/basics.md
- Headers: user-guide/headers.md
- Query string: user-guide/query-string.md
- Forms: user-guide/form.md
- JSONs: user-guide/json.md
- Authoraztion: user-guide/auth.md
- Multipart: user-guide/multipart.md
- Cookies: user-guide/cookies.md
- Raw response: user-guide/raw-response.md
- Chunks (streaming response): user-guide/chunks.md
- For contributors: contributing.md
- Support us: support.md
# Theme preference. Use `mkdocs-material`
theme:
name: material
favicon: assets/reqsnaked-filled-white.png
logo: assets/reqsnaked-filled-white.png
palette:
- scheme: default
primary: blue grey
accent: amber
toggle:
icon: material/lightbulb-outline
name: Switch to dark mode
- scheme: slate
primary: teal
accent: amber
toggle:
icon: material/lightbulb
name: Switch to light mode
font:
text: Ubuntu
code: Monaco
features:
- header.autohide
- content.code.annotate
- navigation.instant
- navigation.tracking
- navigation.tabs
- search.highlight
- search.share
- content.action.edit
- content.action.view
- navigation.footer
plugins:
- social:
cards_color:
fill: "#282c36"
text: "#FFFFFF"
cards_dir: assets/
- search:
separator: '[\s\-,:!=\[\]()"/]+|(?!\b)(?=[A-Z][a-z])|\.(?!\d)|&[lg]t;'
extra_css:
- css/theme.css
extra:
consent:
title: Cookie consent
description: >-
We use cookies to recognize your repeated visits and preferences, as well
as to measure the effectiveness of our documentation and whether users
find what they're searching for. With your consent, you're helping us to
make our documentation better.
actions:
- accept
- reject
- manage
analytics:
provider: google
property: G-6T0WXKZ5S5
feedback:
title: Was this page helpful?
ratings:
- icon: material/emoticon-happy-outline
name: This page was helpful
data: 1
note: >-
Thanks for your feedback!
- icon: material/emoticon-sad-outline
name: This page could be improved
data: 0
note: >- # (2)!
Thanks for your feedback! Help us improve this page by
using our <a href="..." target="_blank" rel="noopener">feedback form</a>.
social:
- icon: fontawesome/brands/telegram
link: https://t.me/reqsnaked
version:
provider: mike
default: latest
# Material extensions
markdown_extensions:
- admonition
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.details
- pymdownx.superfences
- pymdownx.magiclink
- attr_list
- pymdownx.tabbed:
alternate_style: true
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg