forked from MasterGroosha/aiogram-3-guide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
71 lines (61 loc) · 1.62 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
# Project information
site_name: Пишем Telegram-ботов на Python (v2)
site_description: Учебник по разработке ботов для Telegram на языке Python
site_author: MasterGroosha
site_url: https://mastergroosha.github.io/telegram-tutorial-2
docs_dir: book_src
site_dir: docs
# Repository
repo_name: MasterGroosha/telegram-tutorial-2
repo_url: https://github.com/MasterGroosha/telegram-tutorial-2
edit_uri: ""
# Copyright
copyright: Copyright © 2020-2021 Groosha
# Configuration
theme:
name: material
custom_dir: book_src/overrides
language: ru
palette:
primary: teal
accent: teal
scheme: preference
font:
text: Roboto
code: Roboto Mono
icon:
logo: material/robot
# Extras
extra:
social:
- icon: fontawesome/brands/telegram
link: https://t.me/joinchat/TsftDfnevFLQS1ts
name: "Чат в Telegram"
- icon: fontawesome/brands/github-alt
link: https://github.com/MasterGroosha/telegram-tutorial-2
name: GitHub
- icon: fontawesome/brands/gitlab
link: https://gitlab.com/groosha/telegram-tutorial-2
name: Gitlab
# Extensions
markdown_extensions:
- admonition
- pymdownx.highlight
- pymdownx.superfences
- meta
- toc:
permalink: true
nav:
- 'Введение': index.md
- 'Знакомство с aiogram': quickstart.md
- 'Работа с собщениями': messages.md
- 'Кнопки': buttons.md
- 'Конечные автоматы': fsm.md
- 'Инлайн-режим': inline_mode.md
plugins:
- search:
lang:
- en
- ru
# Custom
nav_name: "Оглавление"