-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
145 lines (136 loc) · 4.04 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
site_name: CS-Learning
site_url: https://guotree.github.io
site_author: guotree
site_description: CS-Learning
repo_url: https://github.com/guotree/CS-Learning
repo_name: CS-Learning
nav:
- Introduction: "index.md"
- Resources:
- Programming: "resources/programming.md"
- Computer Architecture: "resources/architecture.md"
- Algorithms and Data Structures: "resources/algorithms.md"
- Math for CS: "resources/math.md"
- Operating Systems: "resources/operating-systems.md"
- Computer Networking: "resources/networking.md"
- Databases: "resources/databases.md"
- Languages and Compilers: "resources/languages.md"
- Distributed Systems: "resources/distributed-systems.md"
- Artificial Intelligence: "resources/ai.md"
- Others: "resources/others.md"
- Notes:
- Intro:
- "notes/intro/CrashCourseCS/CrashCourseCS.md"
# - Programming:
# - "notes/programming/templates.md"
# - Computer Architecture:
# - "notes/architecture/templates.md"
# - Algorithms and Data Structures:
# - "notes/algorithms/templates.md"
# - Math for CS:
# - "notes/math/templates.md"
# - Operating Systems:
# - "notes/operating-systems/templates.md"
# - Computer Networking:
# - "notes/networking/templates.md"
# - Databases:
# - "notes/databases/templates.md"
# - Languages and Compilers:
# - "notes/languages/templates.md"
# - Distributed Systems:
# - "notes/distributed-systems/templates.md"
- Artificial Intelligence:
- Harvard CS109 | HarvardX Data Science:
- "notes/ai/Harvard-Data-Science/README.md"
- "notes/ai/Harvard-Data-Science/01-R_Basics.md"
- "notes/ai/Harvard-Data-Science/02-Visualization.md"
- "notes/ai/Harvard-Data-Science/03-Probability.md"
- "notes/ai/Harvard-Data-Science/04-Inference_and_Modeling.md"
- "notes/ai/Harvard-Data-Science/05-Productivity_Tools.md"
- "notes/ai/Harvard-Data-Science/06-Wrangling.md"
- "notes/ai/Harvard-Data-Science/07-Linear_Regression.md"
# - Others:
# - "notes/others/templates.md"
- Links: "links.md"
theme:
icon:
logo: material/robot-excited-outline
repo: fontawesome/brands/github
favicon: assets/robot-excited-outline.svg
name: material
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/link
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/toggle-switch
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: indigo
toggle:
icon: material/toggle-switch-off
name: Switch to system preference
features:
- header.autohide
- navigation.tracking
- navigation.instant
- navigation.top
- navigation.tabs
- navigation.tabs.sticky
- search.suggest
- search.highlight
- content.code.annotate
- content.code.copy
- content.code.select
- content.code.annotate
language: en
custom_dir: overrides
edit_uri: edit/main/docs
copyright: Copyright © 2024 GUOTREE
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/guotree
name: GitHub
plugins:
- search:
lang:
- en
- zh
enable_anchors: true
- tags
markdown_extensions:
- pymdownx.arithmatex:
generic: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
linenums: true
auto_title: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.details
- toc:
permalink: true
- meta
- admonition
- attr_list
- md_in_html
extra_javascript:
- https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js
- javascripts/mathjax.js
- https://unpkg.com/mathjax@3/es5/tex-mml-chtml.js
extra_css:
- stylesheets/extra.css
google_analytics:
- 'UA-35232574'
- 'auto'