-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmkdocs.yml
129 lines (129 loc) · 4.24 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
---
# uv run --only-group docs mkdocs serve
site_name: Wahoo! Results
site_author: John Strunk
site_description: >-
A swimming scoreboard for CTS Dolphin timing systems. Send live race results
to any Chromecast device.
site_url: https://wahoo-results.com
copyright: >-
Documentation © 2020 – 2024 by John Strunk is licensed
under <a href="http://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA
4.0</a>
repo_name: JohnStrunk/wahoo-results
repo_url: https://github.com/JohnStrunk/wahoo-results
nav:
- Home: index.md
- download.md
- quickstart.md
- configuration.md
- cc-compat.md
- faq.md
- blog/index.md
theme:
name: material
custom_dir: docs/overrides
logo: images/wr-icon.png # Logo in upper left corner
favicon: images/wr-icon.png # Favicon in browser tab
features:
- content.tabs.link # Active content tabs are linked together
- navigation.footer # Show footer at bottom of page
# Allow section overview pages (conflicts with integrate)
# - navigation.indexes
- navigation.instant
- navigation.path # Show breadcrumbs at top of page
- navigation.top # Return to top button
- navigation.tracking # Update URL when navigating
- search.highlight # Highlight search terms
- search.suggest # Suggest as you type
- toc.follow # Auto scroll sidebar
# - toc.integrate # Section headers in left sidebar
font:
text: Source Sans Pro
code: Source Code Pro
palette:
scheme: custom
primary: custom
accent: custom
extra_css:
- stylesheets/extra.css
extra_javascript:
- javascripts/clarity.js
extra:
analytics:
provider: google
property: G-2Q6S3GZ3SE
social:
- icon: fontawesome/brands/github
link: https://github.com/JohnStrunk
name: "GitHub: JohnStrunk"
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/johnstrunk/
name: "LinkedIn: John Strunk"
- icon: fontawesome/brands/mastodon
link: https://fosstodon.org/@JohnStrunk
name: "Mastodon: @[email protected]"
- icon: fontawesome/brands/twitter
link: https://twitter.com/TheJohnStrunk
name: "Twitter: @TheJohnStrunk"
# Macro definitions
WR: >-
Wahoo! Results
CC: >-
[Google Chromecast](https://store.google.com/us/product/chromecast)
CD: >-
[Colorado Dolphin wireless timing
system](https://www.coloradotime.com/dolphin-wireless-swim-timing/)
HMM: >-
[HyTek Meet Manager](https://hytek.active.com/swim-meet-software.html)
SMM: >-
[SwimTopia Meet
Maestro](https://www.swimtopia.com/products/meet-maestro/swim-meet-management-software/)
CLEARFLOAT: >-
<div style="clear: both;"></div>
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- pymdownx.betterem # Improved handling of bold/italic
- pymdownx.caret # Add caret to indicate superscript
- pymdownx.details # Collapsible callouts
- pymdownx.highlight:
auto_title: true # Add language name to code block
line_spans: __span # Required for highlighting to work??? see docs
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.keys # Ability to render keyboard keystrokes
- pymdownx.snippets # Include contents of other files
- pymdownx.superfences
- pymdownx.tabbed: # Allow creating tabbed content
alternate_style: true
- pymdownx.tilde # Subscript
- tables
- toc: # Table of contents on right side of page
title: "Page contents"
permalink: true # Para marks at end of headers for permalinks
permalink_title: "Link to this section"
- mdx_truly_sane_lists # Fix nested lists
plugins:
- blog:
archive: false
blog_toc: true
post_date_format: long
post_excerpt: required # Must add <!-- more --> as separator in post
post_readtime: true
post_url_date_format: yyyy
- glightbox: # Image lightbox
auto_caption: true
caption_position: bottom
- macros # mkdocs-macros-plugin - jinja templating
- search
# Social needs Cairo Graphics, and that needs to be installed separately on
# Windows. Unclear if it would work on RTD.
# - social
strict: true
use_directory_urls: false