generated from ekristen/go-project-template
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmkdocs.yml
78 lines (70 loc) · 1.76 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: Distillery
site_url: https://ekristen.github.io/distillery
site_author: Erik Kristensen
site_description: >-
Install any binary from any source, well ideally. A package manager without packages. Like homebrew, but less fizz (aka no package management)
repo_name: ekristen/distillery
repo_url: https://github.com/ekristen/distillery
copyright: Copyright © 2024 - Erik Kristensen
site_dir: public
# Configuration
theme:
name: material
language: en
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/link
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/toggle-switch
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: indigo
toggle:
icon: material/toggle-switch-off
name: Switch to system preference
features:
- navigation.footer
- navigation.indexes
- navigation.path
- navigation.expand
- navigation.sections
- navigation.expand
- toc.follow
- toc.integrate
- content.code.annotate
- content.code.copy
- content.tooltips
- content.tabs.link
- search.highlight
- search.share
- search.suggest
# Plugins
plugins:
- search
# Extensions
markdown_extensions:
- admonition
- pymdownx.highlight
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- toc:
permalink: true
# Page tree
nav:
- Home: index.md
- Installation: installation.md
- Config:
- Overview: config.md
- Aliases: config/aliases.md
- Distfile: distfile.md
- Architecture: architecture.md
- Supported Sources: sources.md