-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathmkdocs.yml
More file actions
143 lines (124 loc) · 4.07 KB
/
mkdocs.yml
File metadata and controls
143 lines (124 loc) · 4.07 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: TTLarva
site_url: https://www.ttlarval.org/
site_description: >-
小糖不想吃糖了 - 关注深度学习、C++、嵌入式
# Repository
repo_name: ttlarva
repo_url: https://github.com/ttttLarva/Larva
edit_uri: "blob/master/docs/"
# Copyright
copyright: Copyright © All Reserved
#website/xxx.html style
use_directory_urls: false
# Configuration
theme:
name: material
custom_dir: 'overrides/'
logo: assets/logo.svg
# 404 page
static_templates:
- 404.html
# Don't include MkDocs' JavaScript
include_search_page: false
search_index_only: true
# Default values, taken from mkdocs_theme.yml
language: zh
features:
- navigation.tabs
- navigation.top
#- instant
palette:
scheme: default
primary: Light Blue
accent: Light Blue
font:
text: Roboto
code: Roboto Mono
# icon:
# logo: logo
favicon: assets/favicon.png
# Plugins
plugins:
- search
extra:
version:
provider: mike
#disqus: livere_indeed
# Extensions
markdown_extensions:
- markdown.extensions.admonition
- markdown.extensions.attr_list
- markdown.extensions.codehilite:
guess_lang: false
- markdown.extensions.def_list
- markdown.extensions.footnotes
- markdown.extensions.meta
- markdown.extensions.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:
repo_url_shorthand: true
user: squidfunk
repo: mkdocs-material
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.snippets:
check_paths: true
- pymdownx.superfences
- pymdownx.tabbed
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
extra_javascript:
- javascripts/config.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
nav:
- 首页: index.md
- 一起学GitHub:
- 如何提交 PR: github/01_how_to_pr.md
- 如何通过 PR 学习: github/02_learn_from_pr.md
- github SSH免密码登录设置: github/03_SSH_for_github.md
- 美化代码工具分享: github/04_beauty_code.md
- 快速上手 Markdown: github/05_get_started_with_Markdown.md
- MkDocs 工具使用: github/06_Mkdocs.md
- GitHub Pages 的生成和使用: github/07_GitHub_Pages.md
- GitHub Actions 介绍 & 使用: github/08_GitHub_Actions.md
- 解决 Git 冲突 Merge Conflicts: github/09_merge_conflicts.md
- 删除指定 commit 小妙招 git rebase: github/10_git_rebase.md
- 研究 C++ 新语法:
- 右值引用: learn_cpp/01_rvalue_ref.md
- 完美转发: learn_cpp/02_forward.md
- 可变参模板: learn_cpp/03_varadic_template.md
- 单例模式: learn_cpp/04_singleton.md
- 类型别名:从 typedef 到 using: learn_cpp/05_using_against_typedef.md
- 仿函数: learn_cpp/06_functor.md
- 编译链接和宏本质: learn_cpp/07_complie_link_macro.md
- 模板 template: learn_cpp/08_template.md
- 模板特例: learn_cpp/09_template_special.md
- 搞懂 SFINAE: learn_cpp/11_template_sfinae.md
- enable_if 新标准: learn_cpp/012_enable_if.md
- enable_if 的重定义错误: learn_cpp/13_enable_if_redefine_mistake.md
- 模板元编程: learn_cpp/014_materials.md
- C++ 开发工具集锦:
- VS Code 插件 Remote SSH: remote_cpp_development/remote_ssh.md
- 使用包管理工具 Conda: remote_cpp_development/conda.md
- 编译 C++ 项目必备 CMake: remote_cpp_development/CMake.md
- clangd 帮助打造 Linux 下完美 C++ IDE: remote_cpp_development/Clangd.md
- 学习 CUDA 编程:
- CUDA 是什么: cuda_program/01_what_is_cuda.md
- CPython 源码解读:
- 认识 CPython 源码结构并且编程: cpython/CPython1.md