-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
80 lines (74 loc) · 1.99 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
site_name: LeetCode Solutions
site_author: Litreily
site_description: leetcode solutions
site_url: http://www.litreily.top/leetcode/
repo_url: https://github.com/Litreily/leetcode-docs
edit_uri: tree/master/docs/
copyright: Copyright © 2020 LITREILY
theme:
name: material
# favicon:
icon:
logo: material/book-open-page-variant
features:
- tabs
palette:
primary: 'red'
accent: 'red'
markdown_extensions:
- admonition
- codehilite
- footnotes
- meta
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
# - pymdownx.caret
# - pymdownx.critic
# - pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
# - pymdownx.highlight:
# linenums_style: pymdownx-inline
# - pymdownx.inlinehilite
# - pymdownx.keys
# - pymdownx.magiclink
- pymdownx.mark
# - pymdownx.smartsymbols
# - pymdownx.snippets:
# check_paths: true
- pymdownx.superfences
- pymdownx.tabbed
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
plugins:
- search
- minify:
minify_html: true
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/litreily
extra_css:
extra_javascript:
- js/config.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
nav:
- LeetCode: index.md
- About: about.md
- shell:
- 192.统计词频: shell/192.word-frequency.md
- 193.有效电话号码: shell/193.valid-phone-numbers.md
- 194.转置文件: shell/194.transpose-file.md
- 195.第十行: shell/195.tenth-line.md
- 算法:
- 面试题64.求1+2+...+n: algorithm/m64.qiu-12n-lcof.md
- 1.两数之和: algorithm/1.two-sum.md
- 2.两数相加: algorithm/2.add-two-numbers.md
- 3.无重复字符的最长子串: algorithm/3.longest-substring-without-repeating-characters.md