File tree Expand file tree Collapse file tree 4 files changed +31
-1
lines changed Expand file tree Collapse file tree 4 files changed +31
-1
lines changed Original file line number Diff line number Diff line change @@ -9,5 +9,9 @@ The [cloud-discord](https://github.com/incendo/cloud-discord) repository houses
9
9
- [ cloud-jda5] ( ./jda5.md ) : Integration for JDA5 slash commands.
10
10
- [ cloud-kord] ( ./kord.md ) : Integration for Kord slash commands.
11
11
- [ cloud-javacord] ( ./javacord.md ) : Integration for Javacord.
12
+
13
+ Example modules:
14
+
15
+ - [ example-discord4j] ( https://github.com/Incendo/cloud-discord/tree/master/examples/example-discord4j ) : Example bot using Discord4J.
12
16
- [ example-jda5] ( https://github.com/Incendo/cloud-discord/tree/master/examples/example-jda5 ) : Example bot using JDA5.
13
17
- [ example-kord] ( https://github.com/Incendo/cloud-discord/tree/master/examples/example-kord ) : Example bot using Kord.
Original file line number Diff line number Diff line change @@ -25,6 +25,17 @@ They are written for the Bukkit Minecraft API but the examples are not specific
25
25
26
26
## Structure
27
27
28
+ <div class =" grid cards " markdown >
29
+
30
+ - [ :material-book: Core] ( core/index.md )
31
+ - [ :fontawesome-solid-at: Annotated Commands] ( annotations/index.md )
32
+ - [ :material-language-kotlin: Kotlin Support] ( kotlin/index.md )
33
+ - [ :material-minecraft: Minecraft Integrations] ( minecraft/index.md )
34
+ - [ :simple-discord: Discord Integrations] ( discord/index.md )
35
+ - [ :material-factory: Postprocessors] ( https://github.com/Incendo/cloud-processors )
36
+
37
+ </div >
38
+
28
39
The documentation is split into different sections for the different Cloud modules.
29
40
It is highly recommended that you get started with the [ cloud-core] ( ./core/index.md ) docs before you delve into the
30
41
platform-specific docs.
Original file line number Diff line number Diff line change 1
1
mkdocs
2
2
mkdocs-material
3
3
mkdocs-git-revision-date-localized-plugin
4
+ mkdocs-git-committers-plugin-2
Original file line number Diff line number Diff line change @@ -64,7 +64,12 @@ theme:
64
64
- content.code.copy
65
65
- content.code.annotate
66
66
- content.tabs.link
67
+ - content.tooltips
67
68
palette :
69
+ - media : " (prefers-color-scheme)"
70
+ toggle :
71
+ icon : material/brightness-auto
72
+ name : Switch to light mode
68
73
- media : " (prefers-color-scheme: light)"
69
74
scheme : default
70
75
primary : pink
78
83
accent : pink
79
84
toggle :
80
85
icon : material/brightness-4
81
- name : Switch to light mode
86
+ name : Switch to system preference
82
87
favicon : assets/images/favicon.png
83
88
logo : assets/images/favicon.png
84
89
markdown_extensions :
@@ -90,13 +95,22 @@ markdown_extensions:
90
95
- pymdownx.superfences
91
96
- pymdownx.tabbed :
92
97
alternate_style : true
98
+ slugify : !!python/object/apply:pymdownx.slugs.slugify
99
+ kwds :
100
+ case : lower
101
+ - pymdownx.emoji :
102
+ emoji_index : !!python/name:material.extensions.emoji.twemoji
103
+ emoji_generator : !!python/name:material.extensions.emoji.to_svg
93
104
- attr_list
94
105
- md_in_html
95
106
plugins :
96
107
- search
97
108
- git-revision-date-localized :
98
109
enable_creation_date : false
99
110
fallback_to_build_date : true
111
+ - git-committers :
112
+ repository : incendo/cloud-docs
113
+ branch : main
100
114
extra :
101
115
consent :
102
116
title : Cookie consent
You can’t perform that action at this time.
0 commit comments