-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
38 lines (37 loc) · 946 Bytes
/
mkdocs.yml
File metadata and controls
38 lines (37 loc) · 946 Bytes
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
# 站点名称
site_name: 'selectivesearch'
# 仓库链接
repo_url: https://github.com/zjZSTU/selectivesearch.git
# 作者
site_author: 'zhujian'
# 版权信息
copyright: '2020, zhujian'
# 源文件目录
docs_dir: 'docs'
# 生成静态文件目录
site_dir: 'site'
# 额外信息
extra:
# 版本号
version: 0.1.0
# 主题
theme:
# name: 'readthedocs'
# name: 'mkdocs'
name: 'material'
# markdown扩展
markdown_extensions:
- toc:
permalink: true
- pymdownx.arithmatex
extra_javascript:
- 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-MML-AM_CHTML'
# 导航
nav:
- Home: index.md
- 图分割算法:
- '算法解析': './图分割-算法解析.md'
- '源码解析': './图分割-源码解析.md'
- 选择性搜索算法:
- '算法解析': './选择性搜索-算法解析.md'
- '源码解析': './选择性搜索-源码解析.md'