forked from ZIJI-CS/T-DigitalDesign
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yaml
97 lines (87 loc) · 2.36 KB
/
mkdocs.yaml
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
site_name: CS-ZIJI-DigitalDesign # TODO: 请修改本节配置项
repo_name: CS-ZIJI/T-DigitalDesign # TODO: 请修改本节配置项
repo_url: https://github.com/CS-ZIJI/T-DigitalDesign # TODO: 请修改本节配置项
edit_uri: blob/main/docs
copyright: 'Copyright © 2023 CS-ZIJI'
theme:
name: material
language: zh
features:
- navigation.tracking
- navigation.indexes
- navigation.expand
- navigation.top
- search.highlight
- search.share
- content.action.edit
- content.action.view
- content.code.annotate
- content.code.copy
icon:
repo: fontawesome/brands/github-alt
edit: material/pencil
view: material/eye
custom_dir: overrides
markdown_extensions:
- toc:
permalink: true # 每个标题都有锚点
slugify: !!python/object/apply:pymdownx.slugs.slugify {kwds: {case: lower}}
- admonition
- pymdownx.details # foldable admonition
- attr_list
- footnotes
- md_in_html
- tables
- pymdownx.caret
- pymdownx.mark
- pymdownx.tilde
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.arithmatex:
generic: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
plugins:
- git-revision-date-localized:
type: datetime
timezone: Asia/Shanghai
locale: zh
enable_creation_date: true
- search:
separator: '[\s\-\.]+'
- git-committers:
repository: CS-ZIJI/T-DigitalDesign # TODO: 请修改本配置项
branch: main
- statistics:
words_per_minute: 200
- glightbox
extra_css:
- supports/css/base.css
- supports/css/theme.css
- supports/css/admonitions.css
- https://jsd.cdn.zzko.cn/npm/[email protected]/dist/katex.min.css
extra_javascript:
- supports/js/katex.js
- https://jsd.cdn.zzko.cn/npm/[email protected]/dist/katex.min.js
# ======================================== >>>
# TODO: 请修改本节配置项
nav:
- "封面": index.md
- 1-x.md
- 2-x.md
- 3-x.md
- 4-x.md
- 5-x.md
- 6-x.md
- 7-x.md
# ======================================== <<<