-
Notifications
You must be signed in to change notification settings - Fork 38
/
mkdocs.yml
89 lines (80 loc) · 2.2 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
site_name: Tildagon Badge Documentation
site_description: "Documentation for the Tildagon Badge used at Electromagnetic Field 2024."
site_url: https://tildagon.badge.emfcamp.org
repo_url: https://github.com/emfcamp/badge-2024-documentation
theme:
name: material
logo: "images/badge icon_64 wide cutouts_dark.svg"
favicon: images/favicon.png
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
# # Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to system preference
extra_css:
- style.css
extra_javascript:
- index.js
markdown_extensions:
- attr_list
- md_in_html
- codehilite
- fenced_code
- admonition
- sane_lists
- pymdownx.details
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
slugify: !!python/object/apply:pymdownx.slugs.slugify
kwds:
case: lower
plugins:
- glightbox:
caption_position: bottom
- mkdocs-nav-weight
- include-markdown
- minify:
minify_html: true
minify_css: true
minify_js: true
minify_css: true
cache_safe: true
- social:
cards_layout_options:
background_color: "#528329"
color: "#ffffff"
font-family: "Roboto"
- search
- spellcheck:
backends: # the backends you want to use
- codespell: # or nested configs
dictionaries: [clear, rare]
# ignore words in <code> tags
ignore_code: yes
# minimum length of words to consider
min_length: 2
# maximum number of capital letters in a word
max_capital: 1
# keep unicode characters
allow_unicode: yes
# whether to only check in strict mode
strict_only: no
- git-committers:
enabled: !ENV [CI, false]
repository: emfcamp/badge-2024-documentation
token: !ENV GITHUB_TOKEN
branch: main