-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
66 lines (59 loc) · 1.85 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
# Project information
site_name: FastMindAPI
# Repository
repo_name: fairyshine/FastMindAPI
repo_url: https://github.com/fairyshine/FastMindAPI
# Configuration
theme:
name: "material"
features:
- navigation.tabs # 页面上方的导航栏
- navigation.instant # 现在页面不会跳转,而是类似单页应用,搜索和各种跳转都是在当前页面完成,对美观有很大帮助
- navigation.tracking # 页面滚动时,导航栏高亮当前页面
- navigation.sections # 使导航栏分块
- navigation.expand # 默认展开导航
- navigation.prune # 只渲染当前页面的导航
- toc.follow # 滚动的时候侧边栏自动跟随
- navigation.top # 返回顶部按钮
- search.suggest # 补全建议
- search.highlight # 搜索结果高亮
- search.share # 搜索结果分享
- navigation.footer # 页脚提示下一章
- content.code.copy # 代码段上的赋值按钮
icon:
logo: material/tools
palette:
# Palette toggle for light mode
- scheme: default
primary: deep purple
accent: purple
toggle:
icon: material/weather-night
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
primary: deep purple
accent: purple
toggle:
icon: material/weather-sunny
name: Switch to light mode
plugins:
- mkdocstrings:
handlers:
python:
paths: [src]
- search # built-in 搜索插件
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.superfences
nav:
- Home: index.md
- Quick Start:
- Installation: Quick_Start/installation.md
- User Guide: Quick_Start/user_guide.md
- Tutorial: Tutorial/tutorial.md
- Documentation: Documentation/API.md
- Development:
- Build Custom Function Library: Development/FunctionLibrary.md
- ABOUT: about.md