-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
76 lines (61 loc) · 2.08 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
# Main config file for generating the manual(S).
# Primarily will generate online gh-pages with more exhaustive documentation than the bog-standard API docs from e.g.
# go-doc.
# Hopefully can also be extended to offline/downloadable formats (HTML, ePub, man file, whatever.)
# Couple of variants for the header I quite like
site_name: '⧼Zelkata Manual⧽'
#site_name: '⦗Zelkata Manual⦘'
site_description: User manual for the Zelkata system.
site_url: https://zelkata.omnikron13.uk
site_author: Joey Sabey
copyright: Copyright © 2024 Joey Sabey
# Link back to the repo that'll lurk in the top right corner
repo_url: https://github.com/omnikron13/zelkata/
repo_name: Zelkata Github repo
# Don't copy files used for building/generating the manual into the site
exclude_docs: |
./scripts/
*.sass
*.scss
#nav.md
SUMMARY.md
SUMMARY/
# Only include drafts in serve, not in actual builds
draft_docs: |
.draft.md
# Leverage the impressive feature set of the material theme (though the actual theming needs some work...)
theme:
name: material
palette:
scheme: catppuccin-macchiato
#scheme: slate
feature:
- fonts: none
- navigation.indexes
- navigation.tabs
- navigation.prune
# Disable default font loading from Google fonts - we are going to be using patched Nerd Fonts for now
plugins:
search:
minify:
minify_html: true
minify_js: true
nav:
- Introduction: index.md
- Concepts:
- Overview: concepts/index.md
- Notes: concepts/notes.md
- Tags: concepts/tags.md
- Specifications: specifications/index.md
extra_css:
# Loading compiled version of the (WIP) Catppuccin theme.
- assets/stylesheets/catppuccin-macchiato.compiled.css
# Pulling in a patched Nerd Font for the icons, at least for now; I think you may be able to just map the symbols?
- assets/fonts/default-font.css
extra_javascript:
- assets/scripts/add_accents.js
# TODO: properly review what we may need
markdown_extensions:
- callouts
- pymdownx.details
- pymdownx.superfences