forked from couleur-tweak-tips/CTT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
208 lines (177 loc) · 6.34 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
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
site_name: Couleur Tweak Tips
site_url: https://ctt.cx/
# https://squidfunk.github.io/mkdocs-material/setup/adding-a-git-repository
repo_url: https://github.com/couleur-tweak-tips/CTT
repo_name: couleur-tweak-tips/CTT
edit_uri: edit/main/docs/
nav:
- About CTT:
- index.md
- Contributing: contributing.md
- Contact: contact.md
- Credits: credits.md
#- test.md
- Video:
- Index: video/index.md
- Which codec should I use?: video/codecguide.md
- Send To: video/sendto.md
- FFmpeg & LibAV:
- Index: video/ffmpeg/index.md
- Upscaling: video/ffmpeg/upscaling.md
- Smoothie:
- video/smoothie/index.md
- Installation: video/smoothie/installation.md
- Use cases examples: video/smoothie/usecases.md
- Recipe configuration: video/smoothie/recipe.md
- Troubleshooting: video/smoothie/troubleshooting.md
- Smoothie vs. blur: video/smoothie/smoothievsblur.md
- Command line arguments: video/smoothie/cli.md
- Frameserver rendering: video/smoothie/frameserver.md
- OBS Studio:
- video/obs/index.md
- Installation ↗: video/obs/install.md
- Docks: video/obs/docks.md
- Source types: video/obs/sourcetypes.md
- General: video/obs/general.md
- Output: video/obs/output.md
- Audio: video/obs/audio.md
- Video: video/obs/video.md
- Hotkeys: video/obs/hotkeys.md
- Advanced: video/obs/advanced.md
- Linux:
- video/obs/linux/index.md
- NvFBC: video/obs/linux/nvfbc.md
- OBS VkCapture: video/obs/linux/obs-vkcapture.md
- Programs:
- Scoop: software/scoop.md
- Winget: software/winget.md
- Windows Terminal: software/windows-terminal.md
- Visual Studio IDEs: software/visual-studio-ides.md
- Misc:
- misc/index.md
- misc/filesharing.md
- misc/mkdocs.md
- misc/yt-dlp.md
copyright: >
<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png" /></a>
<br />mmh ah yes tweak tips 👍 (CTT is NOT funded by the french government)
theme:
name: material
logo: assets/logos/logo.png
favicon: assets/logos/favicon.png
custom_dir: overrides
icon:
# annotation: material/plus-circle
repo: fontawesome/brands/github
features:
# https://squidfunk.github.io/mkdocs-material/setup/setting-up-navigation/#setting-up-navigation
- navigation.instant
- navigation.path
# This breaks navigation.expand at the moment
# - navigation.prune
- navigation.expand
- navigation.indexes
- navigation.top
- navigation.tabs
- navigation.sections
- navigation.tracking
# https://squidfunk.github.io/mkdocs-material/setup/setting-up-navigation/#table-of-contents
- toc.follow
# https://squidfunk.github.io/mkdocs-material/setup/setting-up-site-search/#search-suggestions
- search.suggest
- search.highlight
- search.share
# https://squidfunk.github.io/mkdocs-material/setup/adding-a-git-repository/#code-actions
- content.action.edit
# https://squidfunk.github.io/mkdocs-material/reference/content-tabs/#linked-content-tabs
- content.tabs.link
- content.action.view
# https://squidfunk.github.io/mkdocs-material/reference/code-blocks/#configuration
- content.code.copy
- content.code.select
- content.code.annotate
- content.tooltips
# - header.autohide
# a custom colour scheme could be good in the future
# dark purple accent and primary don't look the best
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: deep purple
accent: deep purple
toggle:
icon: material/weather-night
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: deep purple
accent: deep purple
toggle:
icon: material/weather-sunny
name: Switch to light mode
extra:
#homepage: https://ctt.cx
social:
- icon: fontawesome/brands/discord
link: https://discord.com/invite/aPVMJy78Pa
name: The Couleur Tweak Tips Discord server
- icon: fontawesome/brands/github
link: https://github.com/couleur-tweak-tips
name: Couleur Tweak Tips on GitHub
- icon: fontawesome/brands/telegram
link: https://t.me/Couleur
name: Contact Couleur on Telegram
extra_css:
- assets/css/extra.css
plugins:
# https://squidfunk.github.io/mkdocs-material/setup/setting-up-site-search
- search
#
# Python Markdown
# https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown
# https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions
#
markdown_extensions:
- markdown.extensions.toc:
permalink: ""
# https://squidfunk.github.io/mkdocs-material/reference/admonitions
- admonition
- footnotes
- pymdownx.details
# https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#superfences
- pymdownx.superfences
# https://squidfunk.github.io/mkdocs-material/reference/annotations
- abbr
- attr_list
- md_in_html
# https://squidfunk.github.io/mkdocs-material/reference/formatting
- pymdownx.critic
- pymdownx.caret
- pymdownx.keys
- pymdownx.mark
- pymdownx.tilde
# https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#inlinehilite
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
# https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#snippets
- pymdownx.snippets:
auto_append:
- includes/abbreviations.md
# https://squidfunk.github.io/mkdocs-material/reference/content-tabs
- pymdownx.tabbed:
alternate_style: true
slugify: !!python/object/apply:pymdownx.slugs.slugify
kwds:
case: lower
# https://squidfunk.github.io/mkdocs-material/reference/icons-emojis
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
options:
custom_icons:
- overrides/.icons
# https://squidfunk.github.io/mkdocs-material/reference/lists
- def_list
- pymdownx.tasklist:
custom_checkbox: true