-
Notifications
You must be signed in to change notification settings - Fork 71
/
mkdocs.yml
115 lines (110 loc) · 3.51 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
site_name: Linux 101
site_description: Linux 101 课程讲义
site_author: LUG@USTC
site_url: https://101.lug.ustc.edu.cn/
repo_name: ustclug/Linux101-docs
repo_url: https://github.com/ustclug/Linux101-docs
copyright: Brought to you by <a href="https://lug.ustc.edu.cn/">LUG@USTC</a>. Available freely under the <a href="https://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA 4.0 license</a>.
theme:
name: 'material'
language: 'zh'
font: false
palette:
- scheme: default
media: "(prefers-color-scheme: light)"
primary: indigo
accent: indigo
toggle:
icon: material/weather-night
name: 切换至深色模式
- scheme: slate
media: "(prefers-color-scheme: dark)"
primary: blue
accent: blue
toggle:
icon: material/weather-sunny
name: 切换至浅色模式
icon:
logo: fontawesome/brands/linux
repo: octicons/mark-github-16
features:
- content.action.edit
- content.action.view
- content.code.copy
- content.tooltips
- navigation.footer
- navigation.indexes
- navigation.top
- navigation.tracking
markdown_extensions:
- admonition
- attr_list
- footnotes
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.superfences
- markdown.extensions.def_list
- toc:
permalink: true
extra:
social:
- icon: octicons/globe-16
link: https://lug.ustc.edu.cn/
- icon: octicons/mark-github-16
link: https://github.com/ustclug
analytics:
provider: google
property: G-Q8WSZQS8E1
extra_css:
- 'css/extra.css'
- 'https://101.lug.ustc.edu.cn/_extra/roboto.css'
- 'https://101.lug.ustc.edu.cn/_extra/roboto-mono/stylesheet.css'
nav:
- 负一:计划规格:
- 章节编写指导: Spec/writing.md
- 演示文稿规格: Spec/slide.md
- 零:欢迎:
- index.md
- 记号约定: notations.md
- 功劳簿: credits.md
- 一:初识 Linux:
- Ch01/index.md
- 拓展阅读: Ch01/supplement.md
- 思考题解答: Ch01/solution.md
- 二:个性化配置与建站体验:
- Ch02/index.md
- 拓展阅读: Ch02/supplement.md
- 思考题解答: Ch02/solution.md
- 三:软件安装与文件操作:
- Ch03/index.md
- 拓展阅读: Ch03/supplement.md
- 思考题解答: Ch03/solution.md
- 四:进程、前后台、服务与例行性任务:
- Ch04/index.md
- 拓展阅读: Ch04/supplement.md
- 思考题解答: Ch04/solution.md
- 五:用户与用户组、文件权限、文件系统层次结构:
- Ch05/index.md
- 拓展阅读: Ch05/supplement.md
- 思考题解答: Ch05/solution.md
- 六:网络、文本处理工具与 Shell 脚本:
- Ch06/index.md
- 拓展阅读: Ch06/supplement.md
- 思考题解答: Ch06/solution.md
- 七:Linux 上的编程:
- Ch07/index.md
- 拓展阅读: Ch07/supplement.md
- 八:Docker:
- Ch08/index.md
- 拓展阅读: Ch08/supplement.md
- 九:Shell 高级文本处理与正则表达式:
- Ch09/index.md
- 拓展阅读: Ch09/supplement.md
- 附录:
- Markdown 教程: Appendix/markdown.md
- man 文档的一些示例: Appendix/man.md
- 其他的 Linux 发行版:技术差异简介: Appendix/distribution.md