-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
143 lines (139 loc) · 5.41 KB
/
mkdocs.yml
File metadata and controls
143 lines (139 loc) · 5.41 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
# [Info]
site_name: 沈超凡的个人网站 # 左上角标题
site_url: https://jarrycf.github.io
site_author: 沈超凡
site_description: 沈超凡的个人网站
# [Navigtion]
nav:
- 讲稿:
- LECTURE/index.md
- 机器学习和深度学习:
- 第一课: LECTURE/ML&DL/blank.md
- 计算机自然语言处理:
- word2vec: LECTURE/NLP/word2vec.md
- Transformer: LECTURE/NLP/Transformer.md
- 智能问答: LECTURE/NLP/QA.md
- 计算机视觉与图像处理技:
- 第一课: LECTURE/CV/blank.md
- 社团&讲座:
- 科技前沿分享会: LECTURE/lecture/blank.md
- 科研流程分享会: LECTURE/lecture/how-research.md
- 文化布局宣讲: LECTURE/lecture/cultural-layout.md
- 科技创新讲座: LECTURE/lecture/blank.md
- 金点子答辩: LECTURE/lecture/blank.md
- 博客:
- BLOG/index.md
- BLOG/others.md
- BLOG/1900~2000.md
- BLOG/2001~2101.md
- 考前复习笔记:
- BLOG/note/nlp.md
- BLOG/note/springboot.md
- BLOG/note/data-structure.md
- 各路大佬:
- BLOG/dalao/github.md
- BLOG/dalao/zhihu.md
- AI:
- AI/index.md
- AI/2023.md
- AI/2022.md
- AI/2008.md
- 数学:
- MATH/index.md
- 随笔记:
- MATH/jottings/2305.md
- 技术栈:
- STACK/index.md
- STACK/base-edit-predict.md
- 转载:
- PEPRODUCE/my-faith.md
- PEPRODUCE/index.md
- PEPRODUCE/how-to-ask-questions-the-smart-way.md
- PEPRODUCE/tim-cook-at-duke.md
- PEPRODUCE/my-best-teacher.md
- 我:
- ME/index.md
- ME/cv-full.md
- ME/suki.md
- ME/create-family.md
- ME/support.md
- 网站:
- WEBSITE/index.md # 访客打开网站第一个看到的是 docs/index.md(会报错 The following pages exist in the docs directory, but are not included in the "nav" configuration: index.md 不要紧) 如果访客之后想要重新看到这个界面 可以在 docs/WEBSITE/index.md 找到
- WEBSITE/build.md
- WEBSITE/help.md
- WEBSITE/test.md
# [UI]
## [top]
theme:
name: material
palette:
- scheme: default # 日间模式
primary: indigo # 上方的
accent: orange # 链接等可交互元件的高亮色
toggle:
icon: material/weather-night # 图标
name: 切换至夜间模式 # 鼠标悬浮提示
- scheme: slate # 夜间模式
primary: indigo
accent: orange
toggle:
icon: material/weather-sunny
name: 切换至日间模式
features:
- navigation.tabs # 使用Tab来进行分类
- navigation.top # 返回顶部的按钮 在上滑时出现
- navigation.indexes # Tab会有一个index.md 而不是在打开Tab时打开第一篇文章
- navigation.expand # 打开Tab时左侧目录全部展开
- search.suggest # 搜索输入一些字母时推荐补全整个单词
- search.highlight # 搜索出的文章关键词加入高亮
- content.code.copy # 可以通过按钮复制代码
- content.action.edit # 点击按钮跳转到编辑页面 需要结合 edit_uri 一起使用
language: zh # 一些提示性的文字会变成中文
icon:
repo: fontawesome/brands/github
edit_uri: edit/main/docs # 编辑按钮跳转的链接
## [top-right corner]
repo_url: https://github.com/jarrycf/jarrycf.github.io/actions # 右上角点击跳转的链接
repo_name: jarrycf.github.io # 右上角的名字
## [bottom-left corner]
copyright: 沈超凡 CC-BY-4.0 # 左下角的版权声明
## [bottom-right corner]
extra:
social: # icons
- icon: fontawesome/brands/bilibili
link: https://space.bilibili.com/1352921332
name: Bilibili | jarrycf # 鼠标悬浮提示
- icon: fontawesome/brands/github
link: https://github.com/jarrycf
name: GitHub | jarrycf
# [Extensions]
plugins:
- search: # 现在还不支持中文搜索 支持之后可以设置语言
# insider已经支持中文的分词搜索了 https://squidfunk.github.io/mkdocs-material/BLOG/2022/chinese-search-support/
lang:
- en
- ja
- tags # 给单篇文章添加标签 https://squidfunk.github.io/mkdocs-material/setup/setting-up-tags/?h=tags
markdown_extensions:
- pymdownx.arithmatex: # latex支持
generic: true
- attr_list # 给图片后面添加{width="300"}设置大小
- toc:
permalink: true # 固定标题位置为当前位置
- pymdownx.highlight: # 代码块高亮
# linenums: true # 显示行号
# auto_title: true # 显示编程语言名称
- pymdownx.superfences # 代码块高亮插件
- meta # 支持Markdown文件上方自定义标题标签等
- admonition # https://squidfunk.github.io/mkdocs-material/reference/admonitions/#inline-blocks
- pymdownx.details # admonition需要
extra_javascript:
# latex支持
# check https://squidfunk.github.io/mkdocs-material/reference/mathjax/?h=math for more information
# notice `curl https://polyfill.io/v3/polyfill.min.js?features=es6 > docs/mkdocs/javascripts/polyfill.min.js && curl https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js > docs/mkdocs/javascripts/tex-mml-chtml.js` not works... because there are other resources that need to load
- mkdocs/javascripts/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://unpkg.com/mathjax@3/es5/tex-mml-chtml.js # https://cdn.bytedance.com/?query=mathjax&version=3.2.0
extra_css:
- mkdocs/css/no-footer.css # 不使用底部的翻页
- mkdocs/css/unordered-list-symbols.css # multiplt unordered list symbols