-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathmkdocs.yml
90 lines (84 loc) · 2.8 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
site_name: JDA Wiki
copyright: 'Copyright 2015 Austin Keener, Michael Ritter, Florian Spieß, and <a href="https://github.com/discord-jda/JDA-Website/graphs/contributors" target="_blank">Wiki Contributors</a>'
theme:
custom_dir: overrides
favicon: assets/images/logo-round.png
features:
- navigation.instant
- navigation.tabs
- toc.integrate
- content.code.annotate
name: material
logo: assets/images/logo-transparent.svg
icon:
repo: fontawesome/brands/github
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: purple
toggle:
icon: material/weather-night
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: purple
toggle:
icon: material/weather-sunny
name: Switch to light mode
repo_name: JDA
repo_url: https://github.com/discord-jda/JDA
edit_uri: ../JDA-Website/edit/master/docs/
extra_css:
- 'assets/stylesheets/colors.css'
- 'assets/stylesheets/frontpage.css'
- 'assets/stylesheets/tasklists.css'
markdown_extensions:
- admonition
- meta
- pymdownx.details
- pymdownx.superfences
- pymdownx.highlight
- footnotes
- def_list
- attr_list
- md_in_html
- pymdownx.tasklist:
custom_checkbox: true
- toc:
permalink: true
- pymdownx.tabbed:
alternate_style: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
watch:
- overrides
nav:
- Getting Started:
- JDA: introduction/jda.md
- Using Events: introduction/events.md
- List of Events: introduction/events-list.md
- FAQ: introduction/faq.md
- Migration V3 -> V4: introduction/migration-v3-v4.md
- Migration V4 -> V5: introduction/migration-v4-v5.md
- Setup:
- IntelliJ IDEA Setup: setup/intellij.md
- Eclipse Setup: setup/eclipse.md
- Netbeans Setup: setup/netbeans.md
- Logging (SLF4J): setup/logging.md
- Using JDA:
- Getting Started: using-jda/getting-started.md
- Making a Music Bot: using-jda/making-a-music-bot.md
- Using RestAction: using-jda/using-restaction.md
- Interactions: using-jda/interactions.md
- Paginating Entities: using-jda/paginating-entities.md
- Gateway Intents and Member Cache Policy: using-jda/gateway-intents-and-member-cache-policy.md
- Webhooks: https://github.com/MinnDevelopment/discord-webhooks
- Managers and Moderation: using-jda/separation-of-concerns.md
- Using New Features: using-jda/using-new-features.md
- Troubleshooting: using-jda/troubleshooting.md
- Contributing:
- Contributing: contributing/contributing.md
- Structure Guide: contributing/structure-guide.md
- Repository Structure: contributing/repository-structure.md
- Javadocs: https://docs.jda.wiki/