-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
executable file
·287 lines (274 loc) · 8.06 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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
site_name: Raneys' Docs
site_url: https://www.ranevm.com
site_author: Rane Danielsen
site_description: This is a weird amalgamation of notes of different kinds that I've tossed together.
repo_name: mkdocs-material
repo_url: https://github.com/raney-org/mkdocs-material
edit_uri: edit/main/docs/
theme:
name: material
custom_dir: overrides
icon:
logo: fontawesome/solid/chair
repo: octicons/logo-github-16
tag:
chat-gpt: material/chat-processing-outline
css: fontawesome/brands/css3
data-tables: fontawesome/solid/table
diagrams: fontawesome/solid/diagram-project
docker: fontawesome/brands/docker
git: octicons/logo-github-16
html: fontawesome/brands/html5
js: fontawesome/brands/js
mermaid: fontawesome/solid/fish
python: fontawesome/brands/python
radarr: material/play-outline
school: material/account-school-outline
admonition:
note: octicons/tag-16
abstract: octicons/checklist-16
info: octicons/info-16
tip: octicons/squirrel-16
success: octicons/check-16
question: octicons/question-16
warning: octicons/alert-16
failure: octicons/x-circle-16
danger: octicons/zap-16
bug: octicons/bug-16
example: octicons/beaker-16
quote: octicons/quote-16
features:
- content.code.annotate
- content.code.copy
- content.tabs.link
# - content.code.select
- content.action.edit
- content.action.view
- header.autohide
- navigation.footer
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.top
- navigation.tracking
- navigation.instant
- navigation.prune
- navigation.indexes
- toc.follow
- search.suggest
- search.highlight
- search.share
language: en
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
primary: teal
accent: teal
toggle:
icon: material/brightness-auto
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: teal
accent: teal
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: teal
accent: teal
toggle:
icon: material/brightness-4
name: Switch to system preference
plugins:
# - meta fuckin dumb!!!
- search:
lang: en
separator: '[\s\-,:!=\[\]()"/]+|(?!\b)(?=[A-Z][a-z])|\.(?!\d)|&[lg]t;'
- tags:
tags_file: tags.md
- glightbox:
touchNavigation: true
loop: false
effect: zoom
slide_effect: slide
width: 100%
height: auto
zoomable: true
draggable: true
# skip_classes:
# - custom-skip-class-name
auto_caption: false
caption_position: bottom
- social:
cards_font: Roboto
- table-reader
- git-revision-date-localized:
enable_creation_date: true
fallback_to_build_date: true
type: timeago
markdown_extensions:
- footnotes
- tables
- pymdownx.arithmatex:
generic: true
- abbr
- pymdownx.keys
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
use_pygments: true
linenums: true
# auto_title: true
linenums_style: pymdownx-inline
- pymdownx.inlinehilite
- pymdownx.snippets:
auto_append:
- includes/abbreviations.md
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- def_list
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.smartsymbols
- pymdownx.details
- pymdownx.tabbed:
alternate_style: true
- admonition
- attr_list
- md_in_html
- pymdownx.tilde
- pymdownx.mark
- pymdownx.critic
- pymdownx.caret
- toc:
permalink: true
permalink_title: Anchor link to this section for reference
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
extra_javascript:
- javascripts/shortcuts.js
- javascripts/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
- https://unpkg.com/[email protected]/dist/tablesort.min.js
- javascripts/tablesort.js
extra_css:
- stylesheets/extra.css
extra:
generator: false
tags:
CHAT-GPT: chat-gpt
CSS: css
DATATABLES: data-tables
DIAGRAMS: diagrams
DOCKER: docker
GIT: git
HTML5: html
JavaScript: js
MERMAID: mermaid
PYTHON: python
SCHOOL: school
RADARR: radarr
SALTBOX: saltbox
social:
- icon: fontawesome/solid/heart
class: md-social__link heart
link: 'https://github.com/sponsors/raneydazed'
name: Donate
- icon: fontawesome/brands/discord
class: md-social__link
link: 'https://discord.gg/RKWgjDqkhR'
name: Discord
- icon: fontawesome/brands/github
class: md-social__link
link: 'https://github.com/raneydazed/mkdocs-material'
name: GitHub
- icon: fontawesome/solid/paper-plane
class: md-social__link
link: mailto:[email protected]
name: Email
- icon: fontawesome/brands/linkedin
class: md-social__link
link: 'https://www.linkedin.com/in/raneydazed'
analytics:
provider: google
property: G-E76LZ0DT3L
feedback:
title: Was this page helpful AF?
ratings:
- icon: material/emoticon-happy-outline
name: This page was helpful AF
data: 1
note: >-
Thanks for your feedback sucker!!
- icon: material/emoticon-sad-outline
name: This page could be improved bub. Like a lot
data: 0
note: >-
Thanks for your feedback! Help us improve this page by
using our <a href="..." target="_blank" rel="noopener">feedback form</a>.
consent:
title: Cookie consent
description: >-
We use cookies to recognize your repeated visits and preferences, as well
as to measure the effectiveness of our documentation and whether users
find what they're searching for. With your consent, you're helping us to
make our documentation better.
copyright: >
Copyright © 2023 Rane Danielsen -
<a href="#__consent">Change cookie settings</a>
nav:
- Home: index.md
- School:
- school/README.md
- Informal Logic:
- General Notes: school/informal-logic/notes.md
- Book Excerpts: school/informal-logic/book-excerpts.md
- Learning Activity:
- Week-3: school/informal-logic/learning-activity/week-3.md
- Week-4: school/informal-logic/learning-activity/week-4.md
- Fundamentals of Programming Languages:
- General Notes: school/programming-languages/notes.md
- Python:
- Python: school/programming-languages/python/python-overview.md
- Variables and Expressions: school/programming-languages/python/variables-expressions.md
- Docker:
- Guide:
- Intro: code/docker/README.md
- Step One: code/docker/step-one.md
- Step Two: code/docker/step-two.md
- Step Three: code/docker/step-three.md
- Step Four: code/docker/step-four.md
- Step Five: code/docker/step-five.md
- Step Six: code/docker/step-six.md
- Step Seven: code/docker/step-seven.md
- Step Eight: code/docker/step-eight.md
- Audiobookshelf: code/audiobookshelf.md
- Pihole + Unbound: code/pihole.md
- qBittorrent:
- Tune: code/qbit/tune.md
- qBit Info: code/qbit/qbit.md
- qBit Scripts: code/qbit/scripts.md
- Starr Suite:
- Radarr: code/radarr.md
- Wiki JS: code/wiki-js.md
- YTDL: code/ytdl.md
- Tests:
- Chat GPT: code/chat-gpt.md
- Data Tables: code/datatables.md
# - Docker: code/docker.md
- Mermaid: code/mermaid-test.md
- Saltbox: references/saltbox.md
- Git:
# - git/README.MD
- Git Info: git/git-info.md
- Tags: tags.md