Skip to content

Commit

Permalink
enhance mobile, fix #142
Browse files Browse the repository at this point in the history
  • Loading branch information
shigma committed Dec 31, 2023
1 parent faf240a commit 9385a97
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
11 changes: 10 additions & 1 deletion .vitepress/theme/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ html.dark {
--vp-c-brand-1: #aa99ff; // 250 40 100
--vp-c-brand-2: #7c67e6; // 250 55 90
--vp-c-brand-3: #6045e6; // 250 70 90
--vp-c-brand-soft: rgba(128, 102, 255, 0.16); // 250 60 100
--vp-c-brand-soft: rgba(128, 102, 255, 0.14); // 250 60 100
--vp-c-brand-alt: #C079F2; // 275 50 95
}

Expand Down Expand Up @@ -105,3 +105,12 @@ mjx-container {
margin-top: -4px;
}
}

@media (max-width: 640px) {
.vp-doc .custom-block {
div[class*='language-'] {
border-radius: 0;
margin: 16px -1.5rem;
}
}
}
22 changes: 6 additions & 16 deletions zh-CN/api/core/command.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,31 +100,21 @@ type FieldCollector<K extends string> =
如果指令需要用到频道数据,你可以提前声明,这样有助于合并多次请求,从而提高性能。
参见[按需加载](../../guide/database/builtin.md#声明所需字段)章节。
### cmd.alias(...names)
### cmd.alias(name, config?)
- **names:** `string[]` 要设置的别名
- 返回值: `this`
设置指令别名。
### cmd.shortcut(name, config?)
- **name:** `string | RegExp` 快捷匹配
- **config:** `ShortcutConfig`
- **config.prefix:** `boolean` 调用时要求保留前缀
- **config.fuzzy:** `boolean` 允许在快捷方式后带参数
- **config.greedy:** `boolean` 将所有后面的内容解析成一个参数
- **name:** `string` 要设置的别名
- **config:** `Command.Alias`
- **config.args:** `any[]` 要带的参数列表,将与传入的参数合并
- **config.options:** `Record<string, any>` 要带的选项列表,将与传入的选项合并
- **config.options:** `Dict` 要带的选项列表,将与传入的选项合并
- 返回值: `this`
设置快捷方式
设置指令别名
### cmd.subcommand(name, desc?, config?)
- **name:** `string` 指令名以及可能的参数
- **desc:** `string` 指令的描述
- **config:** [`CommandConfig`](./context.md#ctx-command) 指令的配置
- **config:** [`Command.Config`](./context.md#ctx-command) 指令的配置
- 返回值:`Command` 注册或修改的指令
注册或修改子指令。子指令会继承当期指令的上下文。参见[指令的多级结构](../../guide/basic/command.md#指令的多级结构)章节。
Expand Down
1 change: 1 addition & 0 deletions zh-CN/manual/usage/adapter.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
- [微信公众号](../../plugins/adapter/wechat-official.md)
- [企业微信](../../plugins/adapter/wecom.md)
- [WhatsApp](../../plugins/adapter/whatsapp.md)
- [Zulip](../../plugins/adapter/zulip.md)

其中,常用的适配器插件已经预装在了 Koishi 中,你可以在插件配置中的 adapter 分组中找到它们。如果没有看到你想要的平台,你也可以在插件市场中搜索并安装更多适配器插件。

Expand Down

0 comments on commit 9385a97

Please sign in to comment.