-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
160 lines (150 loc) · 4.07 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
site_name: Wiki
site_description: 个人wiki
site_author: WJS
site_url: http://wiki.wjsphy.top
edit_uri: ""
repo_name: wiki
repo_url: 'https://github.com/wjsoj/wiki'
copyright: Copyright © 2022 - 2023 WJS
theme:
name: material
custom_dir: overrides
palette:
# primary: white
# accent: red
# scheme: preference
- media: "(prefers-color-scheme: light)"
scheme: default
primary: teal
accent: red
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: blue grey
accent: red
toggle:
icon: material/weather-night
name: Switch to light mode
features:
- navigation.tabs
- content.code.copy
# - content.action.edit
# - content.action.view
- navigation.footer
- navigation.tabs.sticky
- navigation.expand
# - toc.integrate
- navigation.top
# - navigation.sections
- search.suggest
# - navigation.indexes
- search.highlight
- navigation.instant
- navigation.tracking
- search.share
- toc.follow
- content.code.annotate
# - content.tabs.link
language: 'zh'
icon:
repo: fontawesome/brands/github-alt
logo: material/notebook
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- meta
- md_in_html
- tables
- toc:
permalink: true
permalink_title: Anchor link to this section for reference
toc_depth: 3
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.snippets
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
plugins:
- search:
lang: ja
- glightbox:
touchNavigation: true
loop: false
effect: zoom
slide_effect: slide
width: 100%
height: auto
zoomable: true
draggable: true
skip_classes:
- custom-skip-class-name
auto_caption: false
caption_position: bottom
- minify:
minify_html: true
extra_javascript:
- js/extra.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- js/tex-mml-chtml.js
- js/tablesort.min.js
# - https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
# - https://unpkg.com/[email protected]/dist/tablesort.min.js
nav:
- 主页: index.md
- 介绍:
- 简介: introduction/intro.md
- 如何部署: introduction/start.md
- 原生欢迎页: introduction/mkdocs.md
- 更新日志: introduction/log.md
- 知识技能:
- Markdown: knowledge/markdown.md
- Python进阶: knowledge/python.md
- 正则表达式: knowledge/regex.md
- LaTeX:
- LaTeX基础: knowledge/latex.md
- LaTeX进阶操作: knowledge/latex2.md
- 用LaTeX做PPT: knowledge/beamer.md
- TikZ绘图: knowledge/tikz.md
- 包管理器: knowledge/pkmanager.md
- 体系化知识:
- 前端:
- 学习指南: frontend/navigate.md
- HTML基础: frontend/html.md
- CSS基础: frontend/css.md
- JS基础: frontend/js.md
- JS进阶: frontend/js2.md
- Vue速查: frontend/vue.md
- React速查: frontend/react.md
- 数据结构与算法: knowledge/pkudsa.md
- 关于:
- 1.关于: about/about.md
- 2.参考资料: about/ref.md
- 3.MkDocs增强语法: about/markdown.md