-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathmkdocs.yml
More file actions
130 lines (121 loc) · 3.19 KB
/
mkdocs.yml
File metadata and controls
130 lines (121 loc) · 3.19 KB
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
site_name: LegacyScriptEngine
repo_url: https://github.com/LiteLDev/LegacyScriptEngine
nav:
- Home: index.md
- Tutorials:
- tutorials/create_your_first_plugin.md
- faq.md
- APIs:
- apis/README.md
- apis/LanguageSupport.md
- DataAPI:
- apis/DataAPI/ConfigFile.md
- apis/DataAPI/DataBase.md
- apis/DataAPI/Economy.md
- apis/DataAPI/OtherData.md
- apis/DataAPI/PlayerData.md
- EventAPI:
- apis/EventAPI/Listen.md
- apis/EventAPI/BlockEvents.md
- apis/EventAPI/EconomicEvents.md
- apis/EventAPI/EntityEvents.md
- apis/EventAPI/OtherEvents.md
- apis/EventAPI/PlayerEvents.md
- GameAPI:
- apis/GameAPI/Basic.md
- apis/GameAPI/Block.md
- apis/GameAPI/BlockEntity.md
- apis/GameAPI/Command.md
- apis/GameAPI/Container.md
- apis/GameAPI/Device.md
- apis/GameAPI/Entity.md
- apis/GameAPI/GameUtils.md
- apis/GameAPI/Item.md
- apis/GameAPI/Packet.md
- apis/GameAPI/Particle.md
- apis/GameAPI/Player.md
- apis/GameAPI/ScoreBoard.md
- apis/GameAPI/Server.md
- GuiAPI:
- apis/GuiAPI/Form.md
- apis/GuiAPI/FormBuilder.md
- NbtAPI:
- apis/NbtAPI/NBT.md
- apis/NbtAPI/NBTCompound.md
- apis/NbtAPI/NBTList.md
- apis/NbtAPI/NBTValue.md
- ScriptAPI:
- apis/ScriptAPI/Logger.md
- apis/ScriptAPI/ScriptHelp.md
- apis/ScriptAPI/i18n.md
- apis/ScriptAPI/Ll.md
- SystemAPI:
- apis/SystemAPI/File.md
- apis/SystemAPI/FileSystem.md
- apis/SystemAPI/Network.md
- apis/SystemAPI/SystemCall.md
- apis/SystemAPI/SystemInfo.md
theme:
name: material
custom_dir: docs/overrides
features:
- navigation.tabs
- navigation.tabs.sticky
favicon: img/logo.png
logo: img/logo.png
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: white
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- toc:
slugify: !!python/object/apply:pymdownx.slugs.slugify
kwds:
case: lower
- tables
- pymdownx.arithmatex
- pymdownx.betterem
- pymdownx.caret
- pymdownx.mark
- pymdownx.tilde
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji
- pymdownx.highlight:
auto_title: true
linenums: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.smartsymbols
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist
plugins:
- i18n:
languages:
- locale: en
default: true
name: English
- locale: zh
name: 中文
nav_translations:
Home: 主页
Tutorials: 教程
APIs: 接口
- search