Skip to content

Commit

Permalink
chore: Update sidebar links in English documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
wisdommen committed Jul 1, 2024
1 parent 752eee7 commit ccd31fc
Show file tree
Hide file tree
Showing 4 changed files with 2,907 additions and 2,235 deletions.
10 changes: 5 additions & 5 deletions .vitepress/config/sidebar.en.mts
Original file line number Diff line number Diff line change
Expand Up @@ -21,23 +21,23 @@ const sidebarGuideEN: DefaultTheme.SidebarItem[] = [
items: [
{
text: 'Command Executor',
link: 'essentials/cmd-executor'
link: 'cmd-executor'
},
{
text: 'Event Listener',
link: 'essentials/event-listener'
link: 'event-listener'
},
{
text: 'Config File',
link: 'essentials/config-file'
link: 'config-file'
},
{
text: 'Data Storage',
link: 'essentials/data-storage'
link: 'data-storage'
},
{
text: 'Internationalization',
link: 'essentials/i18n'
link: 'i18n'
},
]
},
Expand Down
6 changes: 5 additions & 1 deletion docs/en/guide/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,11 @@ public class MyPlugin extends UltiToolsPlugin {

Then you have completed an UltiTools module that does nothing.

## Utilize UltiTools-API
## Utilize UltiTools-API in your plugin

::: tip
If you are writing an UltiTools module that relies entirely on UltiTools to run, please skip this section and refer to the previous section!
:::

### Create a connector class

Expand Down
8 changes: 6 additions & 2 deletions docs/zh/guide/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,11 @@ public class MyPlugin extends UltiToolsPlugin {

这样就已经完成了一个什么功能都没有的UltiTools模块。

## 使用UltiTools-API
## 在你的插件中使用UltiTools-API

::: tip
如果你是为了写一个UltiTools模块完全依赖UltiTools运行则请跳过这节,请查看上一节!
:::

### 创建入口类

Expand Down Expand Up @@ -201,4 +205,4 @@ ul list
[12:42:16] [Server thread/INFO]: Example 1.0.0 <--- 这是我们的示例插件
```

在后续的文章中,将会教你有关命令、事件、配置文件、数据存储、开发注解等的使用方法。
在后续的文章中,将会向你解释命令、事件、配置文件、数据存储、开发注解等的使用方法。
Loading

0 comments on commit ccd31fc

Please sign in to comment.