-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
209 lines (196 loc) · 6.51 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
site_name: ZZIcarus NOTE
site_author: ZZIcarus
site_url: "https://zzicarus.github.io/"
repo_name: "zzicarus/zzicarus.github.io"
repo_url: "https://github.com/zzicarus/zzicarus.github.io"
theme:
name: material
favicon: images/joystick.png
# color 部分
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: blue grey #原色用于标题、侧边栏、文本链接和其他几个组件。
accent: indigo # 主题色 强调时的颜色
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: blue grey #原色用于标题、侧边栏、文本链接和其他几个组件。
accent: indigo # 主题色 强调时的颜色
toggle:
icon: material/brightness-4
name: Switch to light mode
# 字体
font:
code: JetBrains Mono
# 语言
language: zh
icon:
logo: material/google-downasaur
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
features:
- content.code.annotate
- content.code.copy # 代码复制
- content.tooltips
# 导航栏
# - navigation.instant
- toc.follow
- navigation.tabs
- navigation.indexes
- navigation.top
- navigation.tracking # 地址栏中的 URL 会自动更新为目录中突出显示的活动定位点
- navigation.path
- search.highlight
- search.share
#custom_dir: overrides
plugins:
- search:
lang:
- zh
- en
separator: '[\s\-\.]+'
- git-revision-date-localized:
type: datetime
timezone: Asia/Shanghai
locale: zh
enable_creation_date: true
exclude:
- index.md
- statistics:
words_per_minute: 200
- pub-obsidian
extra_css:
- css/extra.css
- css/status.css
- css/Myself.css
- css/counter.css
- css/status.css
- https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/katex.min.css
extra_javascript:
- javascripts/mathjax.js
- javascripts/box.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
- javascripts/katex.js
- https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/katex.min.js
- https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/contrib/auto-render.min.js
- javascripts/extra.js
# 加入 md 拓展
markdown_extensions:
- toc:
permalink: true
toc_depth: 4
- meta
- md_in_html
- def_list
- attr_list
- abbr
- admonition
- pymdownx.details
- pymdownx.inlinehilite
- pymdownx.snippets # 将任意文件中的内容嵌入到文档
- pymdownx.superfences # 允许代码和内容嵌套
- pymdownx.critic
- pymdownx.caret
- pymdownx.mark
- pymdownx.tilde
- pymdownx.smartsymbols
- pymdownx.highlight
- pymdownx.keys
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tabbed:
alternate_style: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
nav:
- Home:
- "封面": index.md
- Tools:
- Tools/index.md
- Git: Tools/Git.md
- Shell: Tools/Shell.md
- GNU Make: Tools/GNUMake.md
- 站点:
- mkdocs: Tools/站点/mkdocs.md
- CS:
- CS/index.md
- OOP: CS/OOP.md
- DB:
- CS/DB/index.md
- 1. Interface: CS/DB/Chapter_1.md
- 2. Relation: CS/DB/Chapter_2.md
- 345. SQL: CS/DB/Chapter_3_4_5.md
- 6. ER Model: CS/DB/Chapter_6.md
- 7. Relational Database Design: CS/DB/Chapter_7.md
- 12. Physical Storage: CS/DB/Chapter_12.md
- 13. Data Storage Structures: CS/DB/Chapter_13.md
- 14. Indexing: CS/DB/Chapter_14.md
- 15. Process: CS/DB/Chapter_15.md
- 16. Optimization: CS/DB/Chapter_16.md
- 17. Transaction: CS/DB/Chapter_17.md
- 18. 并发控制: CS/DB/Chapter_18.md
- 19. Recovery: CS/DB/Chapter_19.md
- CO:
- CS/CO/index.md
- 1 Interface: CS/CO/1_Interface.md
- 2 Instruction: CS/CO/2_Instruction.md
- 3 Arithmetic for Computer: CS/CO/3_Arithmetic.md
- 4 Processor: CS/CO/4_Processor.md
- 5 Speed and Size: CS/CO/5_.md
- 6 IO: CS/CO/6.md
- OS:
- CS/OS/index.md
- 1 Overview: CS/OS/Ch1_Overview.md
- 2 Process: CS/OS/Ch2_Process.md
- 3 Thread: CS/OS/Ch3_Thread.md
- 5 Scheduling: CS/OS/Ch5_CPU Scheduling.md
- CN:
- CS/CN/index.md
- 1 Overview: CS/CN/Overview.md
- 2 Physical Layer: CS/CN/Physical Layer.md
- 3 Data Link Layer: CS/CN/Data Link Layer.md
- 4 Network Layer: CS/CN/Network Layer.md
- 5 Transport Layer: CS/CN/Transport Layer.md
- 6 Application Layer: CS/CN/Application Layer.md
- 7 Network Security: CS/CN/Network Security.md
- Appendix: CS/CN/Appendix.md
- DIP:
- 期末复习: CS/DIP/DIP_Review.md
- 【短学期】大数据可视化: CS/大数据可视化.md
- Others:
- others/index.md
- 大学物理实验: others/大物实验.md
- 微观经济学:
- 微观经济学: others/微观经济学/index.md
- Chapter 1 价格机制: others/微观经济学/Chapter 1 价格机制.md
- others/微观经济学/Chapter 2 消费者理论.md
- others/微观经济学/Chapter 3 生产者理论.md
- others/微观经济学/Chapter 4 弹性理论.md
- others/微观经济学/Chapter 5 完全竞争市场.md
- others/微观经济学/Chapter 6 不完全竞争市场.md
- others/微观经济学/Chapter 7 博弈论.md
- others/微观经济学/Chapter 8 要素市场.md
- Blog:
- blog/index.md