-
Notifications
You must be signed in to change notification settings - Fork 12
/
mkdocs.yml
77 lines (71 loc) · 1.98 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
site_name: UNIX 101
site_url: https://nus-unix-workshop.github.io/2021-s1/
site_author: Ooi Wei Tsang
site_description: "The website for Unix Workshop"
repo_url: "https://github.com/nus-unix-workshop/2021-s1"
copyright: "This content is licensed under <a href=http://creativecommons.org/licenses/by-nc-sa/4.0/>Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International</a> license."
theme:
name: cinder
colorscheme: github
highlightjs: false
hljs_languages:
- PowerShell
- Bash
shortcuts:
previous: 72 # h
next: 76 # l
search: 191 # /
nav:
- Home: index.md
- Schedule: schedule.md
- Setup:
- Setup for Windows 10: wsl.md
- Setup for macOS: mac.md
- Setup tmate: tmate.md
- Notes:
- 1. Why Unix?: why-unix.md
- 2. Why CLI?: why-cli.md
- 3. Terminal and Shell: shell.md
- 4. Path and Navigation : path-nav.md
- 5. File Management : file-management.md
- 6. File Permissions : chmod.md
- 7. Standard I/O: stdio.md
- 8. Composition with Pipe: pipe.md
- 9. Pattern Matching: pattern.md
- 10. Productivity with Unix: efficiency.md
- 11. Intro to Vim: vim-intro.md
- 12. Hands on with Vim: vim-practice.md
- 13. Bash Scripting: script.md
- 14. Remote Servers: ssh.md
- Extra: extra.md
- Zoom: zoom.md
extra_css:
- "css/ooiwt.css"
markdown_extensions:
- admonition
- fontawesome_markdown
- footnotes
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.highlight:
linenums: false
- pymdownx.inlinehilite
- pymdownx.keys:
key_map: {
bang: "!",
dollar: "$",
parenthesis-left: "(",
parenthesis-right: ")",
}
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- pymdownx.emoji:
emoji_generator: !!python/name:pymdownx.emoji.to_svg