-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
73 lines (66 loc) · 1.79 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
site_author: Oleg Yukhnevich
site_name: sweet-spi
site_description: "Simple SPI (Service Provider Interface) for Kotlin Multiplatform (equivalent of JVM's Service Loader)"
site_url: https://whyoleg.github.io/sweet-spi/
repo_name: sweet-spi
repo_url: https://github.com/whyoleg/sweet-spi
remote_branch: gh-pages
copyright: 'Copyright © 2024 Oleg Yukhnevich'
extra:
social:
- icon: fontawesome/brands/twitter
link: https://twitter.com/why_oleg
- icon: fontawesome/brands/telegram
link: https://t.me/why_oleg
- icon: fontawesome/brands/patreon
link: https://patreon.com/why_oleg
- icon: fontawesome/brands/linkedin
link: https://linkedin.com/in/whyoleg/
nav:
- 'Overview': README.md
- 'Runtime API': runtime-api/index.html
- 'Gradle Plugin API': gradle-plugin-api/index.html
- 'Changelog': CHANGELOG.md
theme:
name: 'material'
icon:
repo: fontawesome/brands/github
palette:
- scheme: default
media: "(prefers-color-scheme: light)"
primary: 'deep purple'
accent: 'white'
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
media: "(prefers-color-scheme: dark)"
primary: 'deep purple'
accent: 'white'
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.instant
- navigation.tracking
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.expand
- navigation.indexes
- navigation.top
- toc.follow
- content.code.copy
markdown_extensions:
- smarty
- tables
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.magiclink
- pymdownx.smartsymbols
- toc:
permalink: true
plugins:
- search