-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
188 lines (170 loc) · 5.29 KB
/
mkdocs.yml
File metadata and controls
188 lines (170 loc) · 5.29 KB
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
site_name: Avant1's Notes
site_url: https://avantihub.github.io
site_author: Avantihub
site_description: Avant1的笔记本
repo_url: https://github.com/Avantihub/avantihub.github.io
repo_name: Avantihub/note
copyright: Copyright © 2024-2025 <a herf="https://github.com/Avantihub" target="_blank" rel="noopener">Avantihub</a>
theme:
# logo: assets/images/github0.png
name: material
favicon: assets/images/github0.png
language: zh
font: False
icon:
previous: fontawesome/solid/angle-left
next: fontawesome/solid/angle-right
repo: fontawesome/brands/github
annotation: material/arrow-right-circle
logo: material/notebook-outline
palette:
- scheme: default
primary: teal
accent: amber
toggle:
icon: material/weather-night
name: Switch to dark mode
- scheme: slate
primary: indigo
accent: amber
toggle:
icon: material/weather-sunny
name: Switch to light mode
features:
- toc.follow
- navigation.tracking
- navigation.tabs
- navigation.top
- navigation.indexes
- navigation.expand
- search.suggest
- search.highlight
- content.code.annotate
- content.code.copy
- content.action.edit
validation:
nav:
omitted_files: info
not_found: warn
absolute_links: info
links:
not_found: ignore
absolute_links: ignore
unrecognized_links: ignore
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/Avantihub
extra_css:
- css/custom.css
- https://cdn.jsdelivr.net/npm/lxgw-wenkai-screen-webfont@1.1.0/style.css
- https://cdn.jsdelivr.net/npm/katex@0.16.18/dist/katex.min.css
markdown_extensions:
- toc:
permalink: true
toc_depth: 5
- admonition #应用admonition
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite #添加了对内联代码块的语法突出显示的支持
- pymdownx.snippets #使用简单语法将任意文件的内容嵌入到文档
- pymdownx.superfences #允许代码和内容块任意嵌套,包括警告、选项卡、列表和所有其他元素
# custom_fences:
# - name: mermaid
# class: mermaid
# format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.details #admonition可以折叠
- attr_list
- md_in_html
- pymdownx.keys #添加了一个简单的语法来允许呈现键盘按键和组合
- pymdownx.caret
- pymdownx.mark
- pymdownx.tilde
- pymdownx.critic
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.arithmatex:
generic: true
- def_list
- pymdownx.tasklist:
custom_checkbox: true
- meta
- sane_lists
- pymdownx.magiclink
extra_javascript:
- javascripts/mathjax.js
- https://unpkg.com/mathjax@3/es5/tex-mml-chtml.js
plugins:
- rss
- search
- glightbox:
width: 80%
- git-revision-date-localized:
type: datetime
timezone: Asia/Shanghai
locale: zh
enable_creation_date: true
exclude:
- index.md
- changelog
- statistics
nav:
- Home:
- index.md
- Computer Science:
- cs/index.md
- ML:
- 李宏毅22/23:
- Regression: cs/ML/Hungyi22/hw1.md
- Phoneme Classification: cs/ML/Hungyi22/hw2.md
- Image Classification: cs/ML/Hungyi22/HW3/dataaug.md
- Train:
- Transfer&Curriculum learning: cs/ML/Train/Transfer_Curri.md
- Skill: cs/ML/Train/Skills0.md
- 编程语言:
- C/C++:
- C语言: cs/pl/c_cpp/C/c.md
- C09A: cs/pl/c_cpp/C/C09A.md
- simu29: cs/pl/c_cpp/C/simu29.md
- C++: cs/pl/c_cpp/CPP/cpp.md
- Pointer: cs/pl/c_cpp/Pointer.md
- Python:
- Index: cs/pl/python/index.md
- CS61A: cs/pl/python/cs61a.md
- Algorithm:
- Data Structure:
- Note Adapted from NoughtQ:
- Algorithm Analysis: cs/FDS/note_from_NoughtQ/2.md
- Stack & Queue: cs/FDS/note_from_NoughtQ/3.md
- Tree: cs/FDS/note_from_NoughtQ/4.md
- Priority Queues(Heaps): cs/FDS/note_from_NoughtQ/6.md
- Disjoint Set: cs/FDS/note_from_NoughtQ/8.md
- Hardware:
- System 1:
- Combinatorial Logic Design:
- CLA: cs/Hardware/CLA.md
- RISC-V: cs/Hardware/risc5.md
- Verilog:
- Wire:
- Gate: cs/verilog0.md
- Math:
- Analysis: math/Analysis2/Analy1.md
- Linear Algebra: math/LA2/Quotient_space.md
- Discrete Math: math/Discrete_Math/DM0.md
- CodingProb:
- P1010幂次方: codingprob/P1010.md
- P1011车站: codingprob/P1011.md
- P1098字符串展开: codingprob/P1098.md
- Hello: codingprob/hello0.md
- Life:
- Efficient AI: Life/kernel_linux.md
- Memory Folding: Life/24lec0.md
#- Math:
#- Calculus: math/calculus/zjucalc24/quiz/anal_quiz2/index.html