-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
85 lines (85 loc) · 2.23 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
site_name: 嘟嘟可收件箱使用指南
site_description: HUST 211 的软工项目文档
site_url: https://hust-example.com/
repo_url: https://gitee.com/anotheronezjy/hust-se-2022-autumn
copyright: Copyright © 2022 WriteBug HUST-211
docs_dir: "Docs"
nav: # 文档结构
- 主页: index.md
- 指南:
- 开发:
- DEV: developer/dev-pro.md
- WEB: developer/web.md
- FLASK: developer/flask.md
- DB: developer/database.md
- 用户:
- 收集者: user-guide/collector.md
- 提交者: user-guide/submitter.md
- FAQ: user-guide/FAQ.md
- 关于:
- 我们: about/about-us.md
- 版本: about/release-notes.md
theme:
name: material
language: "zh"
palette: # 白天/夜间模式切换
- scheme: default
primary: cyan
accent: cyan
toggle:
# icon: material/toggle-switch-off-outline
icon: material/weather-night
# name: Switch to dark mode
name: 暗色模式
- scheme: slate
primary: deep purple
accent: deep purple
toggle:
# icon: material/toggle-switch
icon: material/weather-sunny
# name: Switch to light mode
name: 亮色模式
features: # 标题行在页面下滑后自动隐藏
- header.autohide
# icon:
# admonition:
# note: octicons/tag-16
# abstract: octicons/checklist-16
# info: octicons/info-16
# tip: octicons/squirrel-16
# success: octicons/check-16
# question: octicons/question-16
# warning: octicons/alert-16
# failure: octicons/x-circle-16
# danger: octicons/zap-16
# bug: octicons/bug-16
# example: octicons/beaker-16
# quote: octicons/quote-16
plugins:
- search
- glightbox
- mkdocstrings:
handlers:
python:
paths: [Src/Flask]
markdown_extensions:
- admonition
- attr_list
- codehilite:
guess_lang: true
use_pygments: true
- md_in_html
- toc:
permalink: "#"
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.details
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
# Formatting 标记
- pymdownx.critic
- pymdownx.caret
- pymdownx.keys
- pymdownx.mark
- pymdownx.tilde