-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathmkdocs.yml
103 lines (95 loc) · 2.7 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
# Project information
site_name: Пишем Telegram-ботов с aiogram 2.x
site_description: Гайд по разработке ботов для Telegram на языке Python с aiogram 2.x
site_author: Groosha
site_url: https://mastergroosha.github.io/aiogram-2-guide
docs_dir: book_src
site_dir: docs
# Repository
repo_name: MasterGroosha/aiogram-2-guide
repo_url: https://github.com/MasterGroosha/aiogram-2-guide
edit_uri: ""
# Copyright
copyright: Copyright © 2020-2023 Groosha
# Configuration
theme:
name: material
custom_dir: book_src/overrides
language: ru
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: teal
toggle:
icon: material/brightness-4
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: teal
toggle:
icon: material/brightness-7
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
icon:
logo: material/robot
# Extras
extra:
social:
- icon: fontawesome/brands/telegram
link: https://t.me/+DE0_2nCvbXozZjUy
name: "Чат в Telegram"
- icon: fontawesome/brands/github-alt
link: https://github.com/MasterGroosha/aiogram-2-guide
name: GitHub
# Extensions
markdown_extensions:
- admonition
- pymdownx.highlight
- pymdownx.superfences
- pymdownx.details
- meta
- attr_list
- toc:
permalink: true
nav:
- index.md
- quickstart.md
- messages.md
- buttons.md
- fsm.md
- inline_mode.md
plugins:
- search
- i18n:
default_language: ru
default_language_only: false
docs_structure: folder
languages:
ru:
name: '<img style="height: 10px; border: 0px;" alt="ru" src="https://flagicons.lipis.dev/flags/4x3/ru.svg" title="russian" /> Русский'
build: true
uz:
name: "<img style='height: 10px; border: 0px;' alt='uz' src='https://flagicons.lipis.dev/flags/4x3/uz.svg' title='uzbek' /> O'zbekcha"
build: true
site_name: "Aiogram 2.Xda Telegram botlar"
nav_translations:
ru:
index.md: "Введение"
quickstart.md: "Знакомство с aiogram"
messages.md: "Работа с сообщениями"
buttons.md: "Кнопки"
fsm.md: "Конечные автоматы"
inline_mode.md: "Инлайн-режим"
uz:
index.md: "Kirish"
quickstart.md: "Aiogram bilan tanishuv"
messages.md: "Xabarlar bilan ishlash"
buttons.md: "Tugmalar"
fsm.md: "FSM (Steytlar)"
inline_mode.md: "Inlayn-mode"
# Custom
nav_name:
ru: "Оглавление"
uz: "Mundarija"