forked from deknowny/vkquick
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
executable file
·113 lines (92 loc) · 2.93 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
# Title of the site
site_name: VK Quick
# Description of the site
site_description: Async python framework for creating VK chat bots
# URL for pages editing
repo_url: https://github.com/deknowny/vkquick/tree/1.0
# Repository name
repo_name: vkquick
# Branch chosen when routing to repository
remote_branch: "1.0"
# Google analytics setup for activity monitoring
google_analytics: ["UA-172364682-1", "vkquick.readthedocs.io"]
# Site's content
nav:
- Home: index.md
- Установка: installation.md
- Как работают боты: how-bots-work.md
- Документация:
- Введение: docs/index.md
- Имена и префиксы: docs/names-and-prefixes.md
- Команды с аргументами: docs/command-arguments.md
- Фильтры для сообщений: docs/filters.md
- Контекст обработки команды:
- Введение: docs/new-message-context/index.md
- Поля сообщения: docs/new-message-context/message-fields.md
- Отправка вложений: docs/attachments.md
- Клавиатуры и карусели: docs/keyboard-and-carousel.md
- Мультиботы: docs/multibots.md
- Дополнительно:
- Кастомный JSON-парсер: docs/advanced/custom-json-parser.md
- Настройка логирования: docs/advanced/setup-logging.md
- CLI: cli.md
- Устройство VK Quick: vkquick-struct.md
- Заметки по релизам: releases.md
- Контрибьютерам: contributing.md
# Theme preference
theme:
# Use `mkdocs-material`
name: material
# Setup lang
language: ru
# Used font on site
font:
# For ordinary text
text: Ubuntu
# For code pasts
code: Monaco
# Material coloring
palette:
# Use custom css-style. Check `css/custom.css`
scheme: slate
# Color when place the cursor on links (some kind of orange)
accent: amber
# Logo nearby title
logo: assets/logo.png
favicon: assets/logo.png
# Don't show target symbol nearby headers
features:
- header.autohide
markdown_extensions:
- admonition
- pymdownx.emoji
- pymdownx.magiclink
- pymdownx.snippets:
check_paths: true
- pymdownx.superfences
- pymdownx.tabbed
- pymdownx.tasklist
- pymdownx.snippets
- pymdownx.inlinehilite
- pymdownx.details
- toc:
permalink: true
# Custom css files
extra_css:
- css/termynal.css
- css/custom.css
# Custom js files
extra_javascript:
- js/termynal.js
- js/custom.js
# Extra preferences
extra:
social:
# Add social icon at the footer
- icon: fontawesome/brands/vk
link: https://vk.com/vkquick
#plugins:
# # Docs generator
# - mkdocstrings:
# watch:
# - vkquick