-
Notifications
You must be signed in to change notification settings - Fork 6
/
mkdocs.yml
718 lines (544 loc) · 26.8 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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
$schema: ./vscode/setting.json
# 项目信息
# =============================================================================================================================
# 站点名称
site_name: Easy-QFNU
# 站点URL
site_url: http://easy-qfnu.top/
# 仓库地址
repo_url: https://github.com/W1ndys/Easy-QFNU/
# 仓库名称
repo_name: Easy-QFNU
# 仓库编辑地址
edit_uri: edit/main/docs/
# 站点描述
site_description: 【Easy-QFNU】让你的QFNU更简单。免费、开源、共建、共享的公益项目,弥补你的信息差,帮助你更快地找到所需信息,致力于解决你在 QFNU 可能遇到的各种问题。
# 作者ID
site_author: W1ndys
# 版权声明
copyright: Copyright © 2023 - 2024 W1ndys
# =============================================================================================================================
# 主题配置
theme:
language: zh
name: material
custom_dir: overrides
# 调色板配置
# https://squidfunk.github.io/mkdocs-material/setup/changing-the-colors/
palette:
# - media: "(prefers-color-scheme)"
# toggle:
# icon: material/brightness-auto
# name: 关闭自动模式
- media: "(prefers-color-scheme: light)" # 用于检测媒体模式
scheme: default # 系统变量,这个不能改
primary: indigo # 可以自定义,建议使用系统主题然后覆盖想改的颜色
accent: indigo
toggle:
icon: material/weather-sunny
name: 开启暗色模式
- media: "(prefers-color-scheme: dark)" # 用于检测媒体模式
scheme: slate # 系统变量,这个不能改
primary: black # 可以自定义,建议使用系统主题然后覆盖想改的颜色
accent: indigo
toggle:
icon: material/weather-night
name: 开启亮色模式
# 字体配置
font:
# false # 关闭谷歌字体
# text: Roboto
# code: Roboto Mono
text: Noto Sans SC
code: Fira Code
# 功能配置
features:
- header.autohide # 标题自动隐藏
- announce.dismiss # 公告标为已读
- navigation.footer # 页脚上下页
- content.code.copy # 代码复制
- content.code.annotate # 代码注释
- content.action.edit # 编辑此页面
- content.action.view # 查看源代码
- navigation.instant # 即时加载
# - navigation.instant.progress # 进度指示器
# - navigation.instant.preview # 预览模式
- navigation.tracking # 锚点追踪
- navigation.tabs # 导航选项卡
#- navigation.tabs.sticky # 固定导航标签
# - navigation.sections # 导航分组呈现,注意,这决定左侧目录的布局变化 https://squidfunk.github.io/mkdocs-material/setup/setting-up-navigation/?h=nav#navigation-expansion
#- navigation.expand # 左侧默认全部展开,与 navigation.prune 冲突
# - navigation.prune # 导航压缩,与 navigation.expand 冲突,开启后默认全不展开,需要手动展开
- navigation.indexes # 章节索引页,需要单独开一个index.md,与分组呈现类似,影响目录的布局,一级标题下自带index,与 toc.integrate 冲突 https://squidfunk.github.io/mkdocs-material/setup/setting-up-navigation/#section-index-pages-with-section-index-pages
- toc.follow # 锚点跟随
#- toc.integrate # 导航整合,会把右侧目录合并到左边,与 navigation.indexes 冲突
- navigation.top # 返回顶部
- search.suggest # 搜索建议
- search.highlight # 搜索突出显示
- search.share # 搜索分享
- content.tooltips # 改进的工具提示
- content.tabs.link # 全部锚链接,启用后,整个文档站点中的所有内容选项卡都将被链接
# 站点的logo(标签页那个)
# https://squidfunk.github.io/mkdocs-material/setup/changing-the-logo-and-icons/#site-icons
favicon: assets/logo/favico.png
# 页面logo图标
# 关于logo配置,如果logo是使用官方图标库,就必须在icon下面,如果是自定义图标,就必须在theme下面
logo: assets/logo/favicon.ico
# 图标设置
# https://squidfunk.github.io/mkdocs-material/setup/changing-the-logo-and-icons/#customization
icon:
# logo
# 关于logo配置,如果logo是使用官方图标库,就必须在icon下面,如果是自定义图标,就必须在theme下面
# logo: material/tools
# 页面编辑和查看图标
edit: material/pencil
view: material/eye
# 存储库图标
repo: fontawesome/brands/github
# 页面底部上下页图标
previous: fontawesome/solid/angle-left
next: fontawesome/solid/angle-right
# 警告/提示图标
# https://squidfunk.github.io/mkdocs-material/reference/admonitions/#admonition-icons
# https://squidfunk.github.io/mkdocs-material/reference/admonitions/#custom-admonitions # 定制自定义图标
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
# 备用的图标 FontAwesome
# note: fontawesome/solid/note-sticky
# abstract: fontawesome/solid/book
# info: fontawesome/solid/circle-info
# tip: fontawesome/solid/bullhorn
# success: fontawesome/solid/check
# question: fontawesome/solid/circle-question
# warning: fontawesome/solid/triangle-exclamation
# failure: fontawesome/solid/bomb
# danger: fontawesome/solid/skull
# bug: fontawesome/solid/robot
# example: fontawesome/solid/flask
# quote: fontawesome/solid/quote-left
# 注释图标
# https://squidfunk.github.io/mkdocs-material/reference/annotations/#annotation-icons
annotation: material/plus-circle-outline
# Markdown扩展配置
# https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown/#/
markdown_extensions:
# Markdown缩写 - abbr
# https://squidfunk.github.io/mkdocs-material/reference/tooltips/#adding-abbreviations
- abbr
# Markdown警告 - admonition
# https://squidfunk.github.io/mkdocs-material/reference/admonitions/#usage
- admonition
# 属性列表 - attr_list
# https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown/#attribute-lists
- attr_list
# 定义列表 - def_list
# https://squidfunk.github.io/mkdocs-material/reference/lists/#/using-definition-lists
- def_list
# 脚注 - footnotes
# https://squidfunk.github.io/mkdocs-material/reference/footnotes/#/adding-footnote-references
- footnotes
# HTML of Markdown - md_in_html
# https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown/#markdown-in-html
- md_in_html
# 表格 - tables,数据表
# https://squidfunk.github.io/mkdocs-material/reference/data-tables/#/usage
- tables
# 目录
# https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown/#table-of-contents
- toc:
permalink: ⚓︎ # 链接图标样式
# title: 目录 # 右侧目录的标题
permalink_title: 锚链接到本标题
# Mathjax
- pymdownx.arithmatex:
generic: true
# 粗体斜体 ** __
- pymdownx.betterem
# 语法高亮 下划线 上下标显示
# https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#caret-mark-tilde
- pymdownx.caret
- pymdownx.mark
- pymdownx.tilde
# 增删红绿标记
# https://squidfunk.github.io/mkdocs-material/reference/formatting/#/highlighting-changes
- pymdownx.critic:
mode: view
# 细节 - pymdownx.details
# https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#details
# https://squidfunk.github.io/mkdocs-material/reference/admonitions/#collapsible-blocks
# https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown/#admonition
- pymdownx.details
# 表情符号
# https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#emoji
- pymdownx.emoji:
emoji_index:
!!python/name:material.extensions.emoji.twemoji # 定义使用哪组表情符号进行渲染
emoji_generator:
!!python/name:material.extensions.emoji.to_svg #定义如何呈现已解析的表情符号或图标简码。请注意,图标只能与to_svg配置一起使用
options:
custom_icons:
- overrides/.icons
# 内联高亮代码块,构建在代码高亮之上
# https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#inlinehilite
- pymdownx.inlinehilite
# 代码高亮
# https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#highlight
- pymdownx.highlight:
linenums: true # 行号开关
anchor_linenums: true # 锚链接
use_pygments: true # true为使用pygments进行语法高亮,false为使用 JavaScript 语法突出显示
pygments_lang_class: true # 添加 CSS 类来识别代码块的语言,这对于自定义注释标记的功能至关重要
auto_title: true # 显示正在使用的语言的名称
linenums_style: pymdownx-inline # table # pymdownx-inline # 添加行号的方法,此处留空为无行号
line_spans: __span # 优化,让每一行代码都包含在<span>中
# 按键/键盘
# https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#keys
- pymdownx.keys
# 智能符号,某些字符序列转换为其相应的符号,例如版权符号或分数
# https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#smartsymbols
# https://facelessuser.github.io/pymdown-extensions/extensions/smartsymbols/#/
- pymdownx.smartsymbols
# 片段
# https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#snippets
- pymdownx.snippets:
auto_append: # 缩写术语表
- includes/abbreviations.md
# 超级栅栏,允许代码和内容块任意嵌套,包括警告、选项卡、列表和所有其他元素。
# https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#superfences
# https://facelessuser.github.io/pymdown-extensions/extensions/superfences/#nested-fence-format
- pymdownx.superfences:
# 与高亮语冲突 https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#highlight
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed: # 选项卡 # https://squidfunk.github.io/mkdocs-material/reference/content-tabs/#anchor-links
alternate_style: true # 替代样式
combine_header_slug: true # 风格样式
# 为tab增加一个大标题,生成一个指定的锚点链接,上面的进阶用法
slugify:
!!python/object/apply:pymdownx.slugs.slugify # 允许自定义 slug 函数。对于某些语言,默认值可能不会产生良好且可读的标识符 - 考虑使用另一个 slug 函数
kwds:
case: lower
# 任务列表
- pymdownx.tasklist:
custom_checkbox: true # 切换复选框的渲染样式,用漂亮的图标替换原生复选框样式,推荐打开
clickable_checkbox: false # 是否可点击,但这种状态不是永久的,刷新会还原,不推荐打开
# 插件配置
plugins:
# 博客配置
# https://squidfunk.github.io/mkdocs-material/setup/setting-up-a-blog/
# https://squidfunk.github.io/mkdocs-material/plugins/blog/#/
- blog:
enabled: true
blog_toc: true
blog_dir: Update
post_date_format: medium
post_url_date_format: yyyy/MM
post_url_format: "/{slug}"
post_excerpt: optional
# 信息插件,用来调试的,便于提交bug
# https://squidfunk.github.io/mkdocs-material/plugins/info/#configuration
# - info:
# 离线插件
# https://squidfunk.github.io/mkdocs-material/plugins/offline/#built-in-offline-plugin
# - offline:
# enabled: !ENV [OFFLINE, false]
# 站点搜索
# https://squidfunk.github.io/mkdocs-material/setup/setting-up-site-search/#/
# 搜索插件
# https://squidfunk.github.io/mkdocs-material/plugins/search/#built-in-search-plugin
- search:
enabled: true
lang:
- zh
- en
separator: '[\s\u200b\-]|[\s\-,:!=\[\]()"/]+|(?!\b)(?=[A-Z][a-z])|\.(?!\d)|&[lg]t;' # 正则表达式,汉语+特殊字符+案例变更+版本字符串+HTML
pipeline:
- stemmer # 词干提取器,将单词的前缀和后缀去除
- stopWordFilter # 去除常用停用词
- trimmer # 去除空白字符
# 加密插件
- encryptcontent:
title_prefix: "" # 加密后的标签页标题前缀
summary: "这个项目已被加密" # 加密后的标题显示
encryption_info_message: "微信搜索公众号:W1ndys,关注后回复“选课指北”可获取密码。" # 加密后的文章显示
placeholder: "请输入密码" # 输入密码的提示
decryption_failure_message: "密码错误" # 密码错误的提示
password_button: True # 解锁按钮文字
password_button_text: "点击解密"
password_inventory:
SelectCourse: "We_are_all_good_kids"
# 标签插件
# https://squidfunk.github.io/mkdocs-material/plugins/tags/#built-in-tags-plugin
- tags:
enabled: true
tags: true
tags_file: tags.md
# 资源下载插件,扫描生成的 HTML 中的外部资源,即脚本、样式表、图像和 Web 字体,下载它们,将它们存储在目录中
# https://squidfunk.github.io/mkdocs-material/plugins/privacy/#built-in-privacy-plugin
- privacy:
enabled: !ENV [CI, false]
assets: false # 是否下载资源
# Glightbox插件 | 灯箱 | 图片可点击放大
- glightbox:
touchNavigation: true # 启用触摸导航(滑动)。可选值:true, false
loop: false # 禁用幻灯片循环播放。可选值:true, false
effect: fade # 灯箱打开时的效果。可选值:zoom, fade, none
slide_effect: slide # 幻灯片切换时的效果。可选值:slide, zoom, fade, none
width: 100% # 内联元素和 iframe 的宽度。可使用任何单位,例如 90%, 100vw
height: auto # 内联元素和 iframe 的高度。可使用任何单位,例如 90%, 100vh, auto
zoomable: true # 启用可缩放图像。可选值:true, false
draggable: true # 启用鼠标拖动切换幻灯片。可选值:true, false
skip_classes: # 禁用特定类名的图像灯箱功能。可在列表中添加类名
- custom-skip-class-name # 示例类名,可根据需要添加更多类名
auto_caption: false # 禁用自动使用图像的 alt 属性作为标题。可选值:true, false
caption_position: bottom # 标题的位置。可选值:bottom, top, left, right
background: none # 灯箱图像的背景 CSS。可使用任何 CSS 值,例如 #74b9ff, Gainsboro, none
shadow: false # 启用灯箱图像的阴影。可选值:true, false
manual: false # 禁用手动启用灯箱。可选值:true, false
# 日期插件,由于这个日期插件耗费了我们太多精力,我们决定删除这个功能
- git-revision-date-localized:
enabled: !ENV [CI, false] # 本地关闭
enable_creation_date: false # 启用创建日期
type: iso_date # date datetime iso_date iso_datetime timeago
fallback_to_build_date: true
timezone: Asia/Shanghai
# 作者插件
# 注意,本插件与远程存储库链接,启用新文件时必须先上传,本地关闭,或者注释掉本设置,否则本地调试会报错
- git-committers:
enabled: !ENV [CI, false] # 本地关闭 # 该设置在Vercel部署会报错,故关闭
repository: W1ndys/Easy-QFNU
branch: main
# 作者插件,感觉不如上面那个好
# - git-authors
# 外部引用插件,一个 MkDocs 插件,它将 mkdocs.yml 额外变量注入到 markdown 模板中
# https://github.com/rosscdh/mkdocs-markdownextradata-plugin
- markdownextradata:
data: ./docs/_data/ # 额外数据文件
# =============================================================================================================================
# 附加的CSS文件
extra_css:
- stylesheets/extra.css
- stylesheets/katex.min.css
- stylesheets/ip.css
- stylesheets/code.css
- stylesheets/icons-emojis.css
- stylesheets/tasklist.css
- stylesheets/admonition.css
- stylesheets/status.css
# - stylesheets/details.css # details的动态css,暂时搁置,以后有时间再看看
# - stylesheets/mouse.css # 鼠标样式
# 附加的JS文件
extra_javascript:
- javascripts/extra.js
- javascripts/mathjax.js # Mathjax
# - https://polyfill.io/v3/polyfill.min.js?features=es6 # Mathjax
- javascripts/matex-mml-chtml.js # Mathjax
- javascripts/katex.js # katex
- javascripts/katex.min.js # katex
- javascripts/auto-render.min.js # katex
- javascripts/ip.js
# - javascripts/tablesort.js # 表格排序
- javascripts/tablesort.min.js # 数据表排序
- javascripts/console.js # 控制台输出
# - javascripts/mouse-moving.js # 鼠标移动星星特效
# 额外配置
# - javascripts/details.js # details的动态js,暂时搁置,以后有时间再看看
extra:
# 是否显示官方仓库
generator: true
# 左上角跳转主页
homepage: /
# Cookie
# consent:
# title: Cookie同意
# description: >
# 我们使用cookie来识别您的重复访问和偏好,以及衡量我们文档的效果和用户是否找到他们正在搜索的内容。通过您的同意,您帮助我们改进我们的文档。<br>
# <strong>请注意:</strong> 您可以随时更改您的Cookie设置,通过浏览器的设置或者在访问我们网站时,接受或拒绝Cookie。但是,如果您拒绝使用Cookie,可能会影响您在我们网站上的体验。
# cookies:
# analytics: 51.la
# custom: Custom cookie # 自定义cookies接受项目
# 统计服务
analytics:
provider: analytics
# 状态页 https://squidfunk.github.io/mkdocs-material/reference/?h=status#/setting-the-page-status
status:
new: Recently added
# 社交账号
# https://squidfunk.github.io/mkdocs-material/setup/setting-up-the-footer/#social-links
social:
- icon: material/home
link: https://w1ndys.top
name: 作者主页
- icon: fontawesome/brands/qq
link: https://blog.w1ndys.top/html/QQ.html
name: 作者QQ
- icon: material/email
link: mailto:[email protected]
name: 作者邮箱
- icon: fontawesome/brands/github
link: https://github.com/W1ndys
name: 作者Github主页
- icon: fontawesome/solid/blog
link: https://blog.w1ndys.top/
name: 作者博客
- icon: simple/materialformkdocs
name: Material for MkDocs提供搭建文档服务
link: https://squidfunk.github.io/mkdocs-material/
- icon: simple/vercel
link: https://vercel.com/w1ndys
name: Vercel提供部署服务
# - icon: W1ndys/dogecloud
# link: https://www.dogecloud.com/
# name: 多吉云提供加速服务
# - icon: W1ndys/Zeabur
# name: Zeabur提供部署服务
# link: https://dash.zeabur.com/projects/660fb441a4799da57871453c/services/66103abea4799da578715540?envID=660fb4414e5f07f892d24a42
# - icon: simple/netlify
# name: Netlify提供部署服务
# link: https://app.netlify.com/sites/easy-qfnu/overview
# - icon: W1ndys/Render
# name: Render提供部署服务
# link: https://dashboard.render.com/static/srv-co7tclcf7o1s738mattg
# - icon: simple/cloudflare
# name: Cloudflare提供部署服务
# link: https://dash.cloudflare.com/ffd1502e63a2eb2d1c6fbc47fab0a5ba/pages/view/easy-qfnu
- icon: W1ndys/51la
name: 51la提供统计服务
link: https://v6.51.la/report/overview?comId=416432
# =============================================================================================================================
# 监听文件,可以实时刷新的目录
watch:
- includes # 目录
- docs # Markdown文件
- mkdocs.yml # 配置文件
- overrides # 部分
# 目录
# =============================================================================================================================
# 注意,目录路径的大小写是敏感的,注意大小写
#
nav:
- Easy-QFNU: index.md
- 快速开始:
- 快速开始: Start/index.md
- 食用教程: Start/Tutorial/index.md
- 贡献指南: Start/Data-Submission/index.md
- 高级语法: Start/Advanced-Syntax/index.md
- 用户协议: Start/Agreement/index.md
- 赞助计划: Start/Sponsor/index.md
- 留言板: Start/Message-Board/index.md
- 意见箱: Start/Feedback-Box/index.md
- 致谢: Start/Thanks/index.md
- Easy-校园:
- Easy-School/index.md
- 欢迎新生: Easy-School/New-Students/index.md
- 校园卡篇: Easy-School/School-Card/index.md
- 智慧曲园: Easy-School/Smart-Quyuan/index.md
- 关于军训: Easy-School/Military/index.md
- 快递包裹: Easy-School/Express/index.md
- 宿舍小窝: Easy-School/Dorm/index.md
- 校园地图: Easy-School/Map/index.md
- 关于食堂: Easy-School/Canteen/index.md
- 关于交通: Easy-School/Traffic/index.md
- 周边玩的: Easy-School/Around_Fun/index.md
- 咱的社团: Easy-School/Clubs/index.md
- 北门药店: Easy-School/Drugstore/index.md
- 校历作息: Easy-School/Calendar/index.md
- 反诈指南: Easy-School/Anti-Fraud/index.md
- 其他注意: Easy-School/Other-Notice/index.md
- Easy-选课:
- Easy-SelectCourse/index.md
- 选课指北:
- Easy-SelectCourse/Selection-Guide/index.md
- 怎么选: Easy-SelectCourse/Selection-Guide/How-to-Select/index.md
- 选什么: Easy-SelectCourse/Selection-Guide/What-to-Select/index.md
- 怎么查: Easy-SelectCourse/Selection-Guide/How-to-Find/index.md
- 英语课: Easy-SelectCourse/Selection-Guide/English/index.md
- 体育课: Easy-SelectCourse/Selection-Guide/Sports/index.md
- 教师教育课: Easy-SelectCourse/Selection-Guide/Teacher-Education/index.md
- 鉴赏课: Easy-SelectCourse/Selection-Guide/Criticism/index.md
- 公选课: Easy-SelectCourse/Selection-Guide/Public-Elective/index.md
- 选课模块: Easy-SelectCourse/Selection-Guide/Selection-Module/index.md
- 2024体育: Easy-SelectCourse/Selection-Guide/2024Sports/index.md
- 选课推荐:
- Easy-SelectCourse/Curriculum-Recommend/index.md
- 外语类: Easy-SelectCourse/Curriculum-Recommend/Foreign-Language/index.md
- 体育类: Easy-SelectCourse/Curriculum-Recommend/Sports/index.md
- 思修类: Easy-SelectCourse/Curriculum-Recommend/Thinking/index.md
- 鉴赏类: Easy-SelectCourse/Curriculum-Recommend/Criticism/index.md
- 形策课: Easy-SelectCourse/Curriculum-Recommend/Politics/index.md
- 未分类: Easy-SelectCourse/Curriculum-Recommend/Others/index.md
- 贡献者们: Easy-SelectCourse/Curriculum-Recommend/Contributors/index.md
- 选课攻略: Easy-SelectCourse/Selection-Strategy/index.md
- 培养方案: Easy-SelectCourse/Curriculum/index.md
- 教务杂症: Easy-SelectCourse/Jiaowu-Symptoms/index.md
- Easy-学院:
- Easy-College/index.md
- Easy-网安:
- Easy-College/Cyber/index.md
- 快速开始:
- Easy-College/Cyber/Start/index.md
- 学院专业:
- Easy-College/Cyber/Major/index.md
- 软件工程: Easy-College/Cyber/Major/Software/index.md
- 网络空间安全: Easy-College/Cyber/Major/Cyber-Security/index.md
- 电子信息工程: Easy-College/Cyber/Major/Electronic/index.md
- 通信工程: Easy-College/Cyber/Major/Communication/index.md
- 物联网工程: Easy-College/Cyber/Major/IOT/index.md
- 关于学习:
- Easy-College/Cyber/Study/index.md
- 绩点课: Easy-College/Cyber/Study/Grade-Point/index.md
- 专业技能: Easy-College/Cyber/Study/Professional-Skills/index.md
- 关于组织:
- Easy-College/Cyber/Organization/index.md
- 学生会: Easy-College/Cyber/Organization/Student-Union/index.md
- 社团: Easy-College/Cyber/Organization/Club/index.md
- 实验室: Easy-College/Cyber/Organization/Lab/index.md
- 球队: Easy-College/Cyber/Organization/Ball-Team/index.md
- 关于竞赛:
- Easy-College/Cyber/Competition/index.md
- CTF: Easy-College/Cyber/Competition/CTF/index.md
- ACM: Easy-College/Cyber/Competition/ACM/index.md
- 蓝桥杯: Easy-College/Cyber/Competition/Lanqiao-Cup/index.md
- Easy-物院:
- Easy-College/Physical-Science/index.md
- 学院专业: Easy-College/Physical-Science/Major/index.md
- 学院位置: Easy-College/Physical-Science/Location/index.md
- 规章制度: Easy-College/Physical-Science/Rules/index.md
- 院学生会: Easy-College/Physical-Science/Union/index.md
- 物院社团: Easy-College/Physical-Science/Club/index.md
- Easy-数科:
- Easy-College/Math/index.md
- Easy-化院:
- Easy-College/Chemistry/index.md
- Easy-生科:
- Easy-College/Life/index.md
- Easy-统院:
- Easy-College/Statistics/index.md
- Easy-历院:
- Easy-College/History/index.md
- Easy-外院:
- Easy-College/Foreign-Language/index.md
- 其他页面:
- Others/index.md
- 网站收藏: Others/favorite-website.md
- 食堂光荣榜: Others/eat_error.md
- 钉钉: Others/dingtalk.md
- 更新日志:
- Update/index.md
#
# =============================================================================================================================
# How to write?
# https://squidfunk.github.io/mkdocs-material/reference/#/