diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js index 0741ac48..971c8b0e 100644 --- a/docs/.vuepress/config.js +++ b/docs/.vuepress/config.js @@ -3,7 +3,7 @@ const path = require("path"); module.exports = context => ({ base: process.env.VUEPRESS_BASE || "/", title: "NoneBot", - description: "基于 OneBot 标准的 Python 异步 QQ 机器人框架", + description: "跨平台 Python 异步 QQ 机器人框架", markdown: { lineNumbers: true }, @@ -56,7 +56,7 @@ module.exports = context => ({ "/": { lang: "zh-CN", title: "NoneBot", - description: "基于 OneBot 标准的 Python 异步 QQ 机器人框架" + description: "跨平台 Python 异步 QQ 机器人框架" } }, diff --git a/docs/.vuepress/public/manifest.json b/docs/.vuepress/public/manifest.json index dfdebc70..8f077d5b 100644 --- a/docs/.vuepress/public/manifest.json +++ b/docs/.vuepress/public/manifest.json @@ -3,7 +3,7 @@ "short_name": "NoneBot", "background-color": "#ffffff", "theme-color": "#ea5252", - "description": "基于 OneBot 标准的 Python 异步 QQ 机器人框架", + "description": "跨平台 Python 异步 QQ 机器人框架", "display": "standalone", "icons": [ { diff --git a/docs/README.md b/docs/README.md index 483a7c8f..891eb832 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1,7 +1,7 @@ --- home: true heroImage: /logo.png -tagline: 基于 OneBot 标准的 Python 异步 QQ 机器人框架 +tagline: 跨平台 Python 异步 QQ 机器人框架 actionText: 开始使用 actionLink: guide/ features: diff --git a/docs/advanced/scheduler.md b/docs/advanced/scheduler.md index 5d3b732b..c58062f1 100644 --- a/docs/advanced/scheduler.md +++ b/docs/advanced/scheduler.md @@ -21,7 +21,7 @@ nb plugin install nonebot_plugin_apscheduler ``` :::tip 提示 -`nb-cli` 默认通过 `pypi` 安装,你可以添加命令参数 `-i [mirror]` 或 `--index [mirror]` 使用镜像源安装。 +`nb-cli` 默认通过 `pypi` 安装,你可以添加命令参数 `-i [mirror]` 或 `--index [mirror]` 以使用镜像源安装。 ::: ### 通过 poetry @@ -96,13 +96,13 @@ scheduler = require('nonebot_plugin_apscheduler').scheduler 对于大多数情况,我们需要在 `nonebot2` 项目被启动时启动定时任务,则此处设为 `true` -### 在 `.env` 中添加 +##### 在 `.env` 中添加 ```bash APSCHEDULER_AUTOSTART=true ``` -### 在 `bot.py` 中添加 +##### 在 `bot.py` 中添加 ```python nonebot.init(apscheduler_autostart=True) @@ -120,13 +120,13 @@ nonebot.init(apscheduler_autostart=True) > 官方文档在绝大多数时候能提供最准确和最具时效性的指南 -### 在 `.env` 中添加 +##### 在 `.env` 中添加 ```bash APSCHEDULER_CONFIG={"apscheduler.timezone": "Asia/Shanghai"} ``` -### 在 `bot.py` 中添加 +##### 在 `bot.py` 中添加 ```python nonebot.init(apscheduler_config={ diff --git a/docs/guide/basic-configuration.md b/docs/guide/basic-configuration.md index 4df8142e..4bb33f4f 100644 --- a/docs/guide/basic-configuration.md +++ b/docs/guide/basic-configuration.md @@ -83,4 +83,4 @@ config.custom_config4 = "new config after init" ## 优先级 -`bot.py`文件(`nonebot.init`) > 系统环境变量 > `.env` `.env.*` 文件 +`bot.py` 文件( `nonebot.init` ) > 系统环境变量 > `.env` `.env.*` 文件