-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathmkdocs.yml
101 lines (90 loc) · 2.57 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
site_name: Geometry
dev_addr: 127.0.0.1:8002
extra_css:
- _assets/main.css
extra_javascript:
- _assets/scg.min.js
- _assets/main.js
plugins:
- search
- i18n:
default_language: en
languages:
en: English
ru: Русский
no_translation:
ru: "Эта страница не переведена на русский язык"
en: "This page isn't translated to English"
translate_nav:
ru:
Home: "Домашняя"
Build: "Сборка"
Ubuntu-18.04: "Ubuntu-18.04"
Development: "Разработка"
Project structure: "Структура проекта"
Agent1: "Агент1"
Changelog: "Список изменений"
nav:
- Home: index.md
- Home: index.ru.md
- Editor:
- Summary: editor/Summary.md
- Summary: editor/Summary.ru.md
- Login Page: editor/Login.md
- Login Page: editor/Login.ru.md
- Editor: editor/Editor.md
- Editor: editor/Editor.ru.md
- Chat: editor/Chat.md
- Chat: editor/Chat.ru.md
- Build:
- Ubuntu-18.04: build/build1804.md
- Ubuntu-18.04: build/build1804.ru.md
- Ubuntu-22.04: build/build2204.md
- Ubuntu-22.04: build/build2204.ru.md
- Development:
- Project structure: dev/project_structure.md
- Project structure: dev/project_structure.ru.md
- Agents:
- Agent1: agents/Agent1.md
- Agent1: agents/Agent1.ru.md
- Agent2: agents/Agent2.md
- Agent2: agents/Agent2.ru.md
- Changelog: changelog.md
theme:
name: material
#logo : .png
font:
text: Raleway
palette:
# Palette toggle for light mode
- scheme: default
primary: cyan
accent: undigo
toggle:
icon: material/lightbulb
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
primary: deep purple
accent: undigo
toggle:
icon: material/lightbulb-outline
name: Switch to light mode
language: en
extra:
# Default mkdocs-material alternate links for untranslated pages
# https://squidfunk.github.io/mkdocs-material/setup/changing-the-language/#site-language-selector
# For translated pages the language name is replaced by the string configured in i18n plugin
# secction and link is replaced by the link to the translated page
alternate:
- name: "Home"
link: ""
lang: en
- name: "Домашняя"
link: index.ru.md
lang: ru
markdown_extensions:
- admonition
- codehilite
- pymdownx.details
- pymdownx.superfences