-
Notifications
You must be signed in to change notification settings - Fork 10
/
mkdocs.yml
129 lines (120 loc) · 3.41 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
site_name: 转码路线图
site_author: FunCoder
site_description: >-
转码路线图
repo_name: zhuan-ma
repo_url: https://github.com/wangzhe3224/zhuan-ma
copyright: Copyright © 2022-present <a href="https://github.com/wangzhe3224" target="_blank" rel="noopener noreferrer">FunCoder</a>
theme:
logo: assets/logo.jpeg
name: material
language: zh
include_search_page: false
search_index_only: true
plugins:
- meta
features:
# - navigation.instant
# - navigation.expand
# - navigation.sections
# - navigation.tabs
# - navigation.tabs.sticky
# - navigation.indexes
# - toc.integrate
- header.autohide
- navigation.tracking
- navigation.top
- search.highlight
- search.share
- search.suggest
- 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
icon:
repo: fontawesome/brands/github
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
custom_dir: overrides
markdown_extensions:
- attr_list
- md_in_html
- admonition
- pymdownx.details
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
plugins:
- tags
# doc : https://timvink.github.io/mkdocs-git-revision-date-localized-plugin/options/
- git-revision-date-localized:
custom_format: "%d. %B %Y"
timezone: Europe/Amsterdam
locale: en
fallback_to_build_date: false
enable_creation_date: true
exclude:
- index.md
enabled: true
extra:
analytics:
provider: google
property: G-RVGQNLW6XM
social:
- icon: fontawesome/brands/github
link: https://github.com/wangzhe3224
generator: false
extra_javascript:
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
- _js/pageview.js
nav:
- 前言: "index.md"
- 核心:
- 核心内容: "core/core.md"
- 计算机科学与技术入门: "core/computer_science_crash_course.md"
- CS61A: "core/cs61a.md"
- CS50: "core/cs50.md"
- CS61B: "core/cs61b.md"
- Nand2Teris: "core/nand2teris.md"
- Leetcode刷题: "core/leetcode.md"
- MIT Missing: "core/mit_missing.md"
- 中文核心内容: "core/core_cn.md"
- 核心书籍: "core/core_books.md"
- 进阶:
- 进阶: 'advanced/advanced.md'
- 转码心得:
- 转码心得: 'experiences/experience.md'
- 转码最重要的东西 - 框架: 'experiences/framework.md'
- 转码如何选择语言?: 'experiences/pick_language.md'
- 转码经典问答: "QA.md"
- 优秀书籍: "books.md"
- 关于我: "about.md"