-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
143 lines (136 loc) · 3.88 KB
/
Copy pathmkdocs.yml
File metadata and controls
143 lines (136 loc) · 3.88 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
site_name: clhost.tech
site_description: "clhost's personal blog"
site_author: clhost
site_url: https://clhost.github.io
repo_name: I'm on GitHub
repo_url: https://github.com/clhost/
extra:
social:
- icon: fontawesome/brands/telegram
link: https://t.me/clhost
- icon: fontawesome/brands/github
link: https://github.com/clhost
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/clhost/
- icon: simple/leetcode
link: https://leetcode.com/clhost/
extra_css:
- stylesheets/extra.css
- stylesheets/admotions.css
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- toc
- pymdownx.snippets
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.emoji:
emoji_generator: !!python/name:materialx.emoji.to_svg
emoji_index: !!python/name:materialx.emoji.twemoji
options:
custom_icons:
- overrides/.icons
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink:
repo_url_shorthand: true
user: squidfunk
repo: mkdocs-material
- pymdownx.mark
- pymdownx.smartsymbols
- 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
- tags
- blog:
archive: false
categories_name: Topics
theme:
name: "material"
custom_dir: overrides
logo: assets/logo.png
favicon: assets/favicon.png
icon:
repo: fontawesome/brands/github-alt
features:
- search.suggest
- search.highlight
- search.share
- navigation.instant
- navigation.tabs
- navigation.sections
- navigation.path
- navigation.top
- navigation.indexes
- toc.integrate
- toc.follow
- content.tooltips
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
primary: black
accent: indigo
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
primary: black
accent: indigo
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to system preference
nav:
- 'Home':
- index.md
- 'Articles':
- blog/index.md
- 'Projects':
- projects/index.md
- Eng micro platform: projects/eng-micro-platform.md
- 'Algorithms':
- algorithms/index.md
- Frameworks:
- Binary search: algorithms/frameworks/binary-search.md
- Backtracking: algorithms/frameworks/backtracking.md
- Prefix sum: algorithms/frameworks/prefix-sum.md
- Sliding window: algorithms/frameworks/sliding-window.md
- Two pointers: algorithms/frameworks/two-pointers.md
- Greedy: algorithms/frameworks/greedy.md
- Dynamic programming: algorithms/frameworks/dynamic-programming.md
- Divide and conquer: algorithms/frameworks/divide-and-conquer.md
- Data structures:
- Monotonic stack: algorithms/datastructures/monotonic-stack.md
- Tree: algorithms/datastructures/tree.md
- Graph: algorithms/datastructures/graph.md
- Trie: algorithms/datastructures/trie.md
- Heap / Priority queue: algorithms/datastructures/heap-priority-queue.md
- Specific cases:
- Intervals: algorithms/cases/intervals.md
- Hash map: algorithms/cases/hash-map.md
- Linked list: algorithms/cases/linked-list.md