-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
81 lines (79 loc) · 1.75 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
site_name: Intermediate bash/Linux
site_url: https://uppmax.github.io/naiss_intermediate_bash_linux
site_description: Material for the course Intermediate bash/Linux
site_dir: site.build
theme:
name: readthedocs
locale: en
logo: images/bash-script.png
# static_templates:
#- sitemap.html
include_sidebar: true
font:
code: Robot Mono
features:
- toc.follow
- toc.integrate
- navigation.top
- navigation.sections
- search.suggest
- search.highlight
- content.tabs.link
- content.code.annotation
- content.code.copy
- content.action.edit
- content.action.view
tabs: true
language: en
extra_css:
- css/extra.css
#extra_javascript:
# - js/popper.min.js
# - js/tippy-bundle.umd.js
# - js/clipboard.js
nav:
- Home: index.md
- Introduction: intro.md
- Environment variables: env-vars.md
- Regular expressions: reg-exp.md
- Redirects: redirects.md
- Symbolic links: symlinks.md
- Archiving/compressing data: arch.md
- Pipes: pipes.md
- Quality of life: qual.md
- Linux tools: tools.md
- Scripting: scripting.md
- Summary: summary.md
- Extras:
- More scripting: more-script.md
plugins:
- search
- external-markdown
- mkdocstrings
- markdown-exec
- open-in-new-tab
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- admonition
- pymdownx.arithmatex:
generic: true
- footnotes
- smarty
- pymdownx.details
- pymdownx.superfences
- codehilite
- pymdownx.mark
- pymdownx.caret
- pymdownx.tilde
- pymdownx.tabbed
- attr_list
- md_in_html
- tables
- toc:
permalink: true
separator: "__"