-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
183 lines (170 loc) · 4.87 KB
/
mkdocs.yml
File metadata and controls
183 lines (170 loc) · 4.87 KB
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
# site
site_name: Luke's Notes
site_url: https://icecoobe.github.io/notes
site_author: icecoobe
site_description: Pieces of life
# repo
repo_url: https://github.com/icecoobe/notes
edit_uri: edit/main/docs/
# Copyright
# copyright: Copyright © 2025 icecoobe<br>The website content is licensed under <a href="https://creativecommons.org/licenses/by-nc-sa/4.0/">CC BY-NC-SA 4.0</a>
copyright: Copyright © 2025 icecoobe <a href="https://squidfunk.github.io/mkdocs-material/reference/">Awesome - Material for MkDocs</a>
# Configuration
# ref: https://github.com/krahets/hello-algo/blob/main/mkdocs.yml
theme:
name: material
palette:
# Palette toggle for light mode
- scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- content.action.edit
- content.code.annotate
- content.code.copy
- content.tabs.link
- content.tooltips
- navigation.indexes
- navigation.instant
- navigation.instant.progress
- navigation.tabs
- navigation.sections
# - navigation.expand
- navigation.path
- navigation.top
- navigation.footer
- navigation.tracking
- navigation.instant
- search.highlight
- search.share
- search.suggest
# - toc.integrate
font:
text: Roboto
code: Roboto Mono
favicon: assets/avatar/favicon.png
# Plugins
plugins:
- search
- glightbox:
touchNavigation: true
loop: false
effect: zoom
slide_effect: none
width: 100%
height: auto
zoomable: true
draggable: false
auto_caption: false
caption_position: bottom
- drawio:
# Control if hovering on a diagram shows a toolbar for zooming or not
toolbar: true
# Control if tooltips will be shown (data-tooltips)
tooltips: true
# Increase or decrease the padding around your diagrams
# (data-border)
border: 5
# Control if edit button will be shown in the lightbox view
# (data-edit)
edit: true
# Control if darkmode is supported
# When activated the color scheme for your diagrams is automatically toggled
# based on the selected theme. Supports classic mkdocs and mkdocs-material.
darkmode: true
extra_css:
- assets/stylesheets/extra.css
extra_javascript:
- assets/javascripts/mathjax.js
- https://cdnjs.cloudflare.com/ajax/libs/mathjax/3.2.2/es5/tex-mml-chtml.min.js
- https://viewer.diagrams.net/js/viewer-static.min.js
- assets/javascripts/drawio-reload.js
# Extensions
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- toc:
permalink: true
- pymdownx.details
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
- pymdownx.critic
- pymdownx.highlight:
linenums: true
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.caret
- pymdownx.keys
- pymdownx.mark
- pymdownx.tilde
- pymdownx.smartsymbols
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tabbed:
alternate_style: true
- pymdownx.arithmatex:
generic: true
extra:
# remove Made with Material for MkDocs notice
generator: false
social:
- icon: fontawesome/brands/github
link: https://github.com/icecoobe
name: icecoobe on GitHub
nav:
- Home: index.md
- Linux:
- Tools: Linux/awesome-tools.md
- Shell Script: Linux/best-practices-of-shell-scripts.md
- FAQ: Linux/FAQ.md
- Link File: Linux/link.md
- C/C++:
- Encoding: c-cpp/data_encoding.md
- C:
- Overview: c-cpp/c/00.overview.md
- Tour of C: c-cpp/c/01.tour_of_c.md
- C++:
- Overview: c-cpp/00.overview.md
- Tour of C++: c-cpp/01.tour_of_cpp.md
- iterator: c-cpp/iterator.md
- Basics:
- virtual: c-cpp/basics/virtual.md
- final: c-cpp/basics/final.md
- Pointer and Reference: c-cpp/basics/pointer_and_ref.md
- RTTI: c-cpp/basics/rtti.md
- Advanced:
- Handle C-style Callback: c-cpp/advanced/handle_c_style_callback.md
- Design Pattern:
- Template Method: c-cpp/design_pattern/template_method.md
- Singleton: c-cpp/design_pattern/singleton.md
- Build: c-cpp/build.md
- Cross Compilation: c-cpp/cross-compile.md
- GoogleTest: c-cpp/googletest.md
- Algorithm:
- Overview: algo/overview.md
- Qt:
- Overview: Qt/00.overview.md
- Add UI for class: Qt/add_ui.md
- Custom Widget: Qt/custom_control.md
- Plugin: Qt/qt_plugin.md
- FAQ: Qt/FAQ.md
- Misc:
- Talk: misc/talk.md
- Thinking: misc/thinking.md
- Museum: misc/museum.md
- Collection: misc/collection.md
- 数字化转型: misc/digital_transformation.md
- ppt: misc/ppt.md