-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
100 lines (88 loc) · 2.19 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
site_name: 计算机学习笔记
site_url: https://team.eecs.pro/
site_author: Bobby
site_description: >-
我的笔记
repo_name: CS-Learning-Notes
repo_url: https://github.com/eecse/CS-Learning-Notes
theme:
name: material
language: zh
static_templates:
- 404.html
include_search_page: false
search_index_only: true
features:
- header.autohide
# - navigation.instant
# - navigation.expand
# - navigation.sections
- navigation.tracking
# - navigation.tabs
# - navigation.tabs.sticky
- navigation.top
# - navigation.indexes
- search.highlight
- search.share
- search.suggest
# - toc.integrate
- content.code.annotate
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: light blue
accent: deep purple
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: cyan
accent: deep purple
toggle:
icon: material/weather-night
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
icon:
repo: fontawesome/brands/github
plugins:
- search:
lang: ja
- git-revision-date-localized
- minify:
minify_html: true
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/eecse/CS-Learning-Notes
markdown_extensions:
- pymdownx.arithmatex:
generic: true
extra_javascript:
- javascripts/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
nav:
- 前言: 'index.md'
- 核心课:
- '核心课程': '核心课/index.md'
- 'csci0300': '核心课/csci0300.md'
- 数学课:
- '数学课程': '数学课/index.md'
- 专业课:
- '专业课程': '专业课/index.md'
- 科学计算:
- 'Matlab': '科学计算/matlab.md'
- 'Julia': '科学计算/julia.md'
- Latex:
- 'Latex': 'Latex/index.md'
- Linux:
- 'Shell': 'Linux/shell.md'
- 'Script': 'Linux/script.md'
- 随笔:
- '测试': '测试/test.md'
- '练习': 'exercise/python.md'
- 数据结构:
- 'CS61B': 'CS61B/lecture1.md'