-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
100 lines (91 loc) · 2.29 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
# Project information
site_name: 玩转力扣
site_url: https://yanglr.github.io/leetcode
site_author: geekzl
site_description: >-
极客学长的leetcode刷题笔记
# Repository
repo_name: yanglr/leetcode
repo_url: https://github.com/yanglr/leetcode
extra:
search:
language: 'en'
# Copyright
copyright: Copyright © 2021 极客学长
theme:
name: null
language: 'zh'
custom_dir: !ENV [THEME_DIR, "material"]
# 404 page
static_templates:
- 404.html
features:
# - navigation.instant
- navigation.sections
- navigation.tabs
- navigation.expand
- navigation.top
# - search.highlight
# - search.suggest
# - search.share
palette:
scheme: default
primary: indigo
accent: indigo
include_search_page: false
search_index_only: true
font:
text: Roboto
code: Roboto Mono
favicon: assets/images/favicon.png
icon:
logo: logo
## Plugins
# plugins:
# - search:
# separator: '[\s\-\.]+'
markdown_extensions:
- admonition
- codehilite:
guess_lang: false
linenums: true
- pymdownx.highlight:
linenums: true
- toc:
permalink: true
- footnotes
- meta
- def_list
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_generator: !!python/name:pymdownx.emoji.to_png
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist
- pymdownx.tilde
# Page tree
nav:
- 主页: index.md
- 简介:
- 入门: getting-started.md
- 算法基础:
- 算法基础简介: algo/introduction.md
- 数组: algo/array.md
- 编程笔记:
- C++: coding/cpp.md
- C#: coding/csharp.md
- leetcode:
- leetcode题解: solutions/index.md
- 玩转力扣Tips: solutions/tips.md
- leetcode1 两数之和 - 简单: solutions/leetcode1 两数之和[简单].md
- leetcode4 寻找两个正序数组的中位数 - 困难: solutions/leetcode4 寻找两个正序数组的中位数[困难].md
- leetcode36 有效的数独 - 中等: solutions/leetcode36 有效的数独[中等].md
- leetcode38 外观数列(报数) - 中等: solutions/leetcode38 外观数列(报数)[中等].md