-
Notifications
You must be signed in to change notification settings - Fork 5
/
mkdocs.yml
163 lines (163 loc) · 4.91 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
# yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json
site_name: Cloud v2
site_url: https://cloud.incendo.org/
repo_url: https://github.com/incendo/cloud-docs
repo_name: cloud-docs
edit_uri: edit/main/docs/
nav:
- Cloud:
- Cloud: index.md
- Changelog: cloud-v2.md
- Core: core/index.md
- Localization: localization/index.md
- Annotations:
- Annotations: annotations/index.md
- Kotlin:
- Kotlin: kotlin/index.md
- Annotations: kotlin/annotations.md
- Coroutines: kotlin/coroutines.md
- Extensions: kotlin/extensions.md
- Discord:
- Discord: discord/index.md
- Discord4J: discord/discord4j.md
- Javacord: https://github.com/Incendo/cloud-discord/tree/master/cloud-javacord
- JDA: https://github.com/Incendo/cloud-discord/tree/master/cloud-jda
- JDA5: discord/jda5.md
- Kord: discord/kord.md
- Minecraft:
- Minecraft: minecraft/index.md
- Brigadier: minecraft/brigadier.md
- "Minecraft Extras": minecraft/minecraft-extras.md
- Platforms:
- Bukkit: minecraft/bukkit.md
- Paper: minecraft/paper.md
- Velocity: minecraft/velocity.md
- Bungee: minecraft/bungee.md
- Cloudburst: minecraft/cloudburst.md
- Sponge: minecraft/sponge.md
- Modded Minecraft:
- cloud-minecraft-modded: minecraft/modded/index.md
- Fabric: minecraft/modded/fabric.md
- NeoForge: minecraft/modded/neoforge.md
- Spring:
- spring: spring/index.md
- Processors:
- Processors: processors/index.md
- Confirmation: processors/confirmation.md
- Cooldown: processors/cooldown.md
- Requirements: processors/requirements.md
# - Misc:
# - irc: other/irc.md
- "Legacy Docs": https://github.com/Incendo/cloud/tree/1.9.0-dev/docs
theme:
name: material
features:
- navigation.instant
- navigation.instant.prefetch
- navigation.tracking
- navigation.sections
- navigation.indexes
- navigation.top
- navigation.footer
# - navigation.expand
- toc.follow
- search.suggest
- search.highlight
- search.share
- content.action.edit
- content.action.view
- content.code.copy
- content.code.annotate
- content.tabs.link
- content.tooltips
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: pink
accent: pink
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: pink
accent: pink
toggle:
icon: material/brightness-4
name: Switch to system preference
favicon: assets/images/favicon.png
logo: assets/images/favicon.png
markdown_extensions:
- toc:
permalink: "#"
- smarty
- admonition
- tables
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
slugify: !!python/object/apply:pymdownx.slugs.slugify
kwds:
case: lower
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.snippets:
base_path:
- "./code/src/main/java/org/incendo/cloud/snippet/"
check_paths: true
dedent_subsections: true
- attr_list
- md_in_html
plugins:
- search
- macros:
include_yaml:
- version: versions.yml
- git-revision-date-localized:
enable_creation_date: false
fallback_to_build_date: true
# - git-committers:
# repository: incendo/cloud-docs
# branch: main
extra:
consent:
title: Cookie consent
description: >-
We use cookies to recognize your repeated visits and preferences, as well
as to measure the effectiveness of our documentation and whether users
find what they're searching for. With your consent, you're helping us to
make our documentation better.
analytics:
provider: google
property: G-4R7HH5TMGT
feedback:
title: Was this page helpful?
ratings:
- icon: material/emoticon-happy-outline
name: This page was helpful
data: 1
note: >-
Thanks for your feedback!
- icon: material/emoticon-sad-outline
name: This page could be improved
data: 0
note: >-
Thanks for your feedback! Help us improve this page by
using our <a href="..." target="_blank" rel="noopener">feedback form</a>.
generator: false
social:
- icon: fontawesome/brands/github
link: https://github.com/incendo
- icon: fontawesome/brands/discord
link: https://discord.gg/aykZu32
copyright: >
Copyright © 2024 Incendo –
<a href="#__consent">Change cookie settings</a>
watch:
- code
- main.py