-
Notifications
You must be signed in to change notification settings - Fork 4
/
mkdocs.yml
47 lines (42 loc) · 1.1 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
# Check https://www.mkdocs.org/user-guide/configuration/
# for more MkDocs configuration details
site_name: Tactics-doc
site_url: https://tactics.readthedocs.io/en/latest/
site_description: The official documentation of Tactics.
site_author: WoodOxen
repo_url: https://github.com/WoodOxen/tactics
docs_dir: Docs/MkDocs/
nav:
- Home: "index.en.md"
- For Developers:
- Folder Structure: "developer/folder_structure.en.md"
- C# Coding Style: "developer/csharp_coding_style.en.md"
theme:
name: "material"
features:
- content.code.copy
- content.code.annotate
plugins:
- i18n:
default_language: en
languages:
en:
name: English
build: true
zh:
name: 中文
build: true
material_alternate: true
nav_translations:
zh:
Home: 首页
For Developers: 开发者须知
Folder Structure: 文件夹结构
C# Coding Style: C# 编程风格
- search
markdown_extensions:
- admonition
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences