-
Notifications
You must be signed in to change notification settings - Fork 4
/
mkdocs.yml
159 lines (146 loc) · 4.54 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
site_name: PySpigot Documentation
site_author: magicmq
site_description: PySpigot is a Spigot plugin that acts as a Python scripting engine for your Minecraft server.
site_url: https://pyspigot-docs.magicmq.dev
repo_name: PySpigot
repo_url: https://github.com/magicmq/pyspigot
copyright: Copyright © 2024 <a href="https://github.com/magicmq" target="a_blank" rel"noopener">magicmq</a>
theme:
name: material
logo: assets/images/logo.png
favicon: assets/images/favicon.ico
font:
text: Open Sans
code: Fira Code
features:
- content.code.annotate
- content.tabs.link
- content.code.copy
- announce.dismiss
- navigation.footer
- navigation.tabs
- navigation.sections
- navigation.top
- navigation.tracking
- navigation.instant
- navigation.instant.progress
- toc.follow
- search.suggest
- search.highlight
- search.share
language: en
palette:
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: green
accent: light green
toggle:
icon: material/brightness-7
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: green
accent: light green
toggle:
icon: material/brightness-3
name: Switch to dark mode
icon:
alternate: material/file-document-multiple-outline
extra:
social:
- icon: fontawesome/brands/discord
class: md-social__link
link: https://discord.gg/f2u7nzRwuk
name: Discord
- icon: fontawesome/brands/github
class: md-social__link
link: https://github.com/magicmq/pyspigot
extra_css:
- stylesheets/extra.css
markdown_extensions:
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.arithmatex:
generic: true
- footnotes
- pymdownx.inlinehilite
- pymdownx.snippets:
auto_append:
- includes/abbreviations.md
- pymdownx.details
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.mark
- pymdownx.tabbed:
alternate_style: true
- admonition
- abbr
- attr_list
- md_in_html
- pymdownx.tilde
- tables
- toc:
permalink: true
- pymdownx.emoji:
emoji_generator: !!python/name:material.extensions.emoji.to_svg
emoji_index: !!python/name:material.extensions.emoji.twemoji
nav:
- PySpigot:
- Home: index.md
- Plugin Information:
- About PySpigot: pyspigot/pyspigot.md
- Plugin Commands: pyspigot/plugincommands.md
- Plugin Configuration: pyspigot/pluginconfiguration.md
- Getting Started:
- Quick Start Guide: pyspigot/quickstart.md
- Helpful Links:
- Example Scripts: scripts/examples.md
- PySpigot on SpigotMC: https://www.spigotmc.org/resources/pyspigot.111006/
- Discord Server: https://discord.gg/f2u7nzRwuk
- Bugs and Issues: https://github.com/magicmq/pyspigot/issues/new/choose
- Feature Requests: https://github.com/magicmq/pyspigot/issues/new/choose
- PySpigot JavaDocs: https://javadocs.magicmq.dev/pyspigot/
- Writing Scripts:
- General Information: scripts/writingscripts.md
- Script Options: scripts/scriptoptions.md
- Global Variables: scripts/globalvariables.md
- External Libraries: scripts/externallibraries.md
- Custom Events: scripts/customevents.md
- Helpful Resources: scripts/externalresources.md
- Example Scripts: scripts/examples.md
- Managers:
- Using the Managers in your Script: managers/usage.md
- Available Managers:
- Script Manager: managers/scripts.md
- Listener Manager: managers/eventlisteners.md
- Command Manager: managers/commands.md
- Task Manager: managers/tasks.md
- Config Manager: managers/configuration.md
- Database Manager: managers/databases.md
- Redis Manager: managers/redis.md
- Optional Managers:
- ProtocolLib Manager: managers/protocollib.md
- Placeholder Manager: managers/placeholders.md
- Miscellaneous:
- Planned Features: misc/plannedfeatures.md
- Licensing Info: misc/license.md
- For Java Developers:
- Script Events: misc/events.md
- Type Coercion: misc/types.md
- PySpigot API: misc/api.md
plugins:
- search
- git-revision-date-localized:
type: timeago
enable_creation_date: true
watch:
- includes