-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
166 lines (160 loc) · 4.3 KB
/
Copy pathmkdocs.yml
File metadata and controls
166 lines (160 loc) · 4.3 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
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
site_name: FastVK
site_description: Async VK bot framework with FastAPI-style decorators and aiogram-style FSM
site_url: https://fastvk.ndugram.dev
docs_dir: docs
theme:
name: material
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/lightbulb-auto
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: custom
accent: custom
toggle:
icon: material/lightbulb
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: custom
accent: custom
toggle:
icon: material/lightbulb-outline
name: Switch to system preference
features:
- content.code.annotate
- content.code.copy
- content.footnote.tooltips
- content.tabs.link
- content.tooltips
- navigation.footer
- navigation.indexes
- navigation.instant
- navigation.instant.prefetch
- navigation.instant.progress
- navigation.path
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- navigation.tracking
- search.highlight
- search.share
- search.suggest
- toc.follow
icon:
repo: fontawesome/brands/github
logo: logo.svg
favicon: logo.svg
repo_name: ndugram/fastvk
repo_url: https://github.com/ndugram/fastvk
extra_css:
- stylesheets/extra.css
plugins:
- search
markdown_extensions:
- admonition
- tables
- attr_list
- toc:
permalink: true
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.details
- pymdownx.tabbed:
alternate_style: true
nav:
- FastVK: index.md
- English:
- en/index.md
- Tutorial:
- en/tutorial/index.md
- en/tutorial/first-steps.md
- en/tutorial/handlers.md
- en/tutorial/filters.md
- en/tutorial/command-args.md
- en/tutorial/message.md
- en/tutorial/attachments.md
- en/tutorial/keyboard.md
- en/tutorial/fsm.md
- en/tutorial/routers.md
- en/tutorial/middleware.md
- en/tutorial/scheduler.md
- en/tutorial/i18n.md
- en/tutorial/background-tasks.md
- en/tutorial/lifespan.md
- en/tutorial/exceptions.md
- en/tutorial/sqlite-storage.md
- en/tutorial/webhook.md
- en/tutorial/dashboard.md
- en/tutorial/testing.md
- en/tutorial/cli.md
- Reference:
- en/reference/index.md
- en/reference/fastvk.md
- en/reference/bot.md
- en/reference/router.md
- en/reference/filters.md
- en/reference/keyboard.md
- en/reference/callback_data.md
- en/reference/uploader.md
- en/reference/fsm.md
- en/reference/types.md
- en/reference/methods.md
- en/reference/scheduler.md
- en/reference/test.md
- en/reference/metrics.md
- en/reference/exceptions.md
- Русский:
- ru/index.md
- Туториал:
- ru/tutorial/index.md
- ru/tutorial/first-steps.md
- ru/tutorial/handlers.md
- ru/tutorial/filters.md
- ru/tutorial/command-args.md
- ru/tutorial/message.md
- ru/tutorial/attachments.md
- ru/tutorial/keyboard.md
- ru/tutorial/fsm.md
- ru/tutorial/routers.md
- ru/tutorial/middleware.md
- ru/tutorial/scheduler.md
- ru/tutorial/i18n.md
- ru/tutorial/background-tasks.md
- ru/tutorial/lifespan.md
- ru/tutorial/exceptions.md
- ru/tutorial/sqlite-storage.md
- ru/tutorial/webhook.md
- ru/tutorial/dashboard.md
- ru/tutorial/testing.md
- ru/tutorial/cli.md
- Справочник:
- ru/reference/index.md
- ru/reference/fastvk.md
- ru/reference/bot.md
- ru/reference/router.md
- ru/reference/filters.md
- ru/reference/keyboard.md
- ru/reference/callback_data.md
- ru/reference/uploader.md
- ru/reference/fsm.md
- ru/reference/types.md
- ru/reference/methods.md
- ru/reference/scheduler.md
- ru/reference/test.md
- ru/reference/metrics.md
- ru/reference/exceptions.md
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/ndugram/fastvk
alternate:
- name: en - English
link: /en/
- name: ru - Русский
link: /ru/