docs: 使用vuepress重新构建文档
1
.gitignore
vendored
@ -1,6 +1,7 @@
|
|||||||
.venv/
|
.venv/
|
||||||
.idea/
|
.idea/
|
||||||
.cache/
|
.cache/
|
||||||
|
node_modules/
|
||||||
data/
|
data/
|
||||||
db/
|
db/
|
||||||
/plugins/
|
/plugins/
|
||||||
|
50
docs/.github/workflows/deploy-docs.yml
vendored
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
|
||||||
|
name: 部署文档
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
# 确保这是你正在使用的分支名称
|
||||||
|
- main
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
deploy-gh-pages:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
# 如果你文档需要 Git 子模块,取消注释下一行
|
||||||
|
# submodules: true
|
||||||
|
|
||||||
|
- name: 安装 pnpm
|
||||||
|
uses: pnpm/action-setup@v2
|
||||||
|
with:
|
||||||
|
run_install: true
|
||||||
|
version: 8
|
||||||
|
|
||||||
|
|
||||||
|
- name: 设置 Node.js
|
||||||
|
uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
node-version: 20
|
||||||
|
cache: pnpm
|
||||||
|
|
||||||
|
|
||||||
|
- name: 构建文档
|
||||||
|
env:
|
||||||
|
NODE_OPTIONS: --max_old_space_size=8192
|
||||||
|
run: |-
|
||||||
|
pnpm run docs:build
|
||||||
|
> src/.vuepress/dist/.nojekyll
|
||||||
|
|
||||||
|
- name: 部署文档
|
||||||
|
uses: JamesIves/github-pages-deploy-action@v4
|
||||||
|
with:
|
||||||
|
# 这是文档部署到的分支名称
|
||||||
|
branch: gh-pages
|
||||||
|
folder: src/.vuepress/dist
|
5
docs/.gitignore
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
|
||||||
|
node_modules/
|
||||||
|
src/.vuepress/.cache/
|
||||||
|
src/.vuepress/.temp/
|
||||||
|
src/.vuepress/dist/
|
@ -1,89 +0,0 @@
|
|||||||
|
|
||||||
<div align=center><h2><font color="#d0e9ff">轻雪</font><font color="#a2d8f4">6.2</font></h2></div>
|
|
||||||
<div align=center><h4>轻量,高效,易于扩展</h4></div>
|
|
||||||
|
|
||||||
- 基于[Nonebot2](https://github.com/nonebot/nonebot2),有良好的生态支持
|
|
||||||
- 开箱即用,无需复杂配置
|
|
||||||
- 新的点击交互模式,拒绝手打指令
|
|
||||||
- 全新可视化`npm`包管理,支持一键安装插件
|
|
||||||
- 支持一切Onebot标准通信
|
|
||||||
|
|
||||||
## 1.安装和部署
|
|
||||||
|
|
||||||
1. 安装`Git`和`Python3.10+`
|
|
||||||
2. 克隆项目`git clone https://github.com/snowykami/LiteyukiBot`
|
|
||||||
3. 切换目录`cd LiteyukiBot`
|
|
||||||
4. 安装依赖`pip install -r requirements.txt`(如果多个Python环境请指定后安装`pythonx -m pip install -r requirements.txt`)
|
|
||||||
5. 启动`python main.py`
|
|
||||||
|
|
||||||
## 2. 配置
|
|
||||||
|
|
||||||
### 轻雪配置项(Nonebot插件配置项也可以写在此,与dotenv格式不同,应为小写)
|
|
||||||
|
|
||||||
如果不确定字段的含义,请不要修改(部分在自动生成配置文件中未列出,需手动添加)
|
|
||||||
|
|
||||||
```yaml
|
|
||||||
# 生成文件的配置项
|
|
||||||
command_start: [ "/", " " ] # 指令前缀
|
|
||||||
host: 127.0.0.1 # 监听地址
|
|
||||||
port: 20216 # 绑定端口
|
|
||||||
nickname: [ "liteyuki" ] # 机器人昵称
|
|
||||||
superusers: [ "1919810" ] # 超级用户
|
|
||||||
# 未列出的配置项(如要自定义请手动修改)
|
|
||||||
onebot_access_token: "" # Onebot访问令牌[具体请看](https://onebot.adapters.nonebot.dev/docs/guide/configuration)
|
|
||||||
default_language: "zh-CN" # 默认语言
|
|
||||||
log_level: "INFO" # 日志等级
|
|
||||||
log_icon: true # 是否显示日志等级图标(某些控制台不可用)
|
|
||||||
auto_report: true # 是否自动上报问题给轻雪服务器,仅包含硬件信息和运行软件版本
|
|
||||||
|
|
||||||
# 其他Nonebot插件的配置项
|
|
||||||
custom_config_1: "custom_value1"
|
|
||||||
...
|
|
||||||
```
|
|
||||||
|
|
||||||
### Onebot实现端配置
|
|
||||||
|
|
||||||
不同的实现端给出的字段可能不同,但是基本上都是一样的,这里给出一个参考值
|
|
||||||
|
|
||||||
| 字段 | 参考值 | 说明 |
|
|
||||||
|-------------|--------------------------|----------------------------------|
|
|
||||||
| 协议 | 反向WebSocket | 推荐使用反向ws协议进行通信,即轻雪作为服务端 |
|
|
||||||
| 地址 | ws://`addrss`/onebot/v11 | 地址取决于配置文件,本机默认为`127.0.0.1:20216` |
|
|
||||||
| AccessToken | `""` | 如果你给轻雪配置了`AccessToken`,请在此填写相同的值 |
|
|
||||||
|
|
||||||
## 3.其他
|
|
||||||
|
|
||||||
### 常见问题
|
|
||||||
|
|
||||||
- 设备上Python环境太乱了,pip和python不对应怎么办?
|
|
||||||
- 请使用`/path/to/python -m pip install -r requirements.txt`来安装依赖,
|
|
||||||
然后用`/path/to/python main.py`来启动Bot,
|
|
||||||
其中`/path/to/python`是你要用来运行Bot可执行文件
|
|
||||||
- 为什么我启动后机器人没有反应?
|
|
||||||
- 请检查配置文件的`command_start`或`superusers`,确认你有权限使用命令并按照正确的命令发送
|
|
||||||
|
|
||||||
- 怎么登录QQ等聊天平台
|
|
||||||
- 你有这个问题说明你不是很了解这个项目,本项目不负责实现登录功能,只负责处理消息
|
|
||||||
你需要使用Onebot标准的实现端来连接到轻雪并将消息上报给轻雪,下面已经列出一些推荐的实现端
|
|
||||||
|
|
||||||
#### 推荐方案(QQ)
|
|
||||||
|
|
||||||
1. [Lagrange.OneBot](https://github.com/KonataDev/Lagrange.Core),目前点按交互目前仅支持Lagrange
|
|
||||||
2. [LiteLoaderQQNT OneBot](https://github.com/LLOneBot/LLOneBot),基于NTQQ的Onebot实现
|
|
||||||
3. 云崽的`icqq-plugin`和`ws-plugin`进行通信
|
|
||||||
4. `Go-cqhttp`(目前已经半死不活了)
|
|
||||||
5. 人工实现的`Onebot`协议,自己整一个WebSocket客户端,看着QQ的消息,然后给轻雪传输数据
|
|
||||||
|
|
||||||
#### 推荐方案(Minecraft)
|
|
||||||
|
|
||||||
1. 我们有专门为Minecraft开发的服务器Bot,支持OnebotV11/12标准,详细请看[MinecraftOneBot](https://github.com/snowykami/MinecraftOnebot)
|
|
||||||
|
|
||||||
使用其他项目连接请先自行查阅文档,若有困难请联系对应开发者而不是Liteyuki的开发者
|
|
||||||
|
|
||||||
## 4.用户协议
|
|
||||||
|
|
||||||
1. 本项目遵循`MIT`协议,你可以自由使用,修改,分发,但是请保留原作者信息
|
|
||||||
2. 你可以选择开启`auto_report`(默认开启),轻雪会收集运行环境的设备信息,通过安全的方式传输到轻雪服务器,用于统计运行时的设备信息,帮助我们改进轻雪,收集的数据包括但不限于:CPU,内存,插件信息,异常信息,会话负载(不含隐私部分)
|
|
||||||
3. 本项目不会收集用户的任何隐私信息,但请注意甄别第三方插件的安全性
|
|
||||||
|
|
||||||
## 5.鸣谢
|
|
19
docs/package.json
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"name": "liteyuki-bot-docs",
|
||||||
|
"version": "2.0.0",
|
||||||
|
"description": "A project of vuepress-theme-hope",
|
||||||
|
"license": "MIT",
|
||||||
|
"type": "module",
|
||||||
|
"scripts": {
|
||||||
|
"docs:build": "vuepress-vite build src",
|
||||||
|
"docs:clean-dev": "vuepress-vite dev src --clean-cache",
|
||||||
|
"docs:dev": "vuepress-vite dev src",
|
||||||
|
"docs:update-package": "pnpm dlx vp-update"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@vuepress/bundler-vite": "2.0.0-rc.9",
|
||||||
|
"vue": "^3.4.21",
|
||||||
|
"vuepress": "2.0.0-rc.9",
|
||||||
|
"vuepress-theme-hope": "2.0.0-rc.32"
|
||||||
|
}
|
||||||
|
}
|
2861
docs/pnpm-lock.yaml
Normal file
12
docs/src/.vuepress/config.ts
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
import { defineUserConfig } from "vuepress";
|
||||||
|
import theme from "./theme.js";
|
||||||
|
|
||||||
|
export default defineUserConfig({
|
||||||
|
base: "/",
|
||||||
|
lang: "zh-CN",
|
||||||
|
title: "文档演示",
|
||||||
|
description: "liteyuki-docs-description",
|
||||||
|
theme,
|
||||||
|
// 和 PWA 一起启用
|
||||||
|
// shouldPrefetch: false,
|
||||||
|
});
|
30
docs/src/.vuepress/navbar.ts
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import { navbar } from "vuepress-theme-hope";
|
||||||
|
|
||||||
|
export default navbar([
|
||||||
|
"/",
|
||||||
|
"/demo/",
|
||||||
|
{
|
||||||
|
text: "指南",
|
||||||
|
icon: "lightbulb",
|
||||||
|
prefix: "/guide/",
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
text: "Bar",
|
||||||
|
icon: "lightbulb",
|
||||||
|
prefix: "bar/",
|
||||||
|
children: ["baz", { text: "...", icon: "ellipsis", link: "" }],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
text: "Foo",
|
||||||
|
icon: "lightbulb",
|
||||||
|
prefix: "foo/",
|
||||||
|
children: ["ray", { text: "...", icon: "ellipsis", link: "" }],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
text: "V2 文档",
|
||||||
|
icon: "book",
|
||||||
|
link: "https://theme-hope.vuejs.press/zh/",
|
||||||
|
},
|
||||||
|
]);
|
BIN
docs/src/.vuepress/public/assets/icon/apple-icon-152.png
Normal file
After Width: | Height: | Size: 3.5 KiB |
BIN
docs/src/.vuepress/public/assets/icon/chrome-192.png
Normal file
After Width: | Height: | Size: 4.6 KiB |
BIN
docs/src/.vuepress/public/assets/icon/chrome-512.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
docs/src/.vuepress/public/assets/icon/chrome-mask-192.png
Normal file
After Width: | Height: | Size: 4.6 KiB |
BIN
docs/src/.vuepress/public/assets/icon/chrome-mask-512.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
docs/src/.vuepress/public/assets/icon/guide-maskable.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
BIN
docs/src/.vuepress/public/assets/icon/ms-icon-144.png
Normal file
After Width: | Height: | Size: 3.6 KiB |
1
docs/src/.vuepress/public/assets/image/advanced.svg
Normal file
After Width: | Height: | Size: 26 KiB |
1
docs/src/.vuepress/public/assets/image/blog.svg
Normal file
After Width: | Height: | Size: 9.8 KiB |
1
docs/src/.vuepress/public/assets/image/box.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" class="icon" viewBox="0 0 1024 1024"><path fill="#FDD7AD" d="M512 0 335.448 88.272l-70.616 35.312-70.624 35.312-176.552 88.28v529.648L512 1024l494.344-247.176V247.176z"/><path fill="#CBB292" d="m759.176 370.76-70.624 35.304-494.344-247.168 70.624-35.312zM512 494.344V1024L17.656 776.824V247.176z"/><path fill="#7F6E5D" d="M1006.344 247.168v529.656L512 1024V494.344l176.552-88.28v70.624l141.24-70.624v-70.616z"/><path fill="#7F5B53" d="M829.792 335.448v70.624L688.56 476.68v-70.624z"/><path fill="#CBB292" d="m829.792 335.448-70.624 35.312-494.344-247.176 70.624-35.312z"/><path fill="#2C3E50" d="m682.52 550.32 157.032-78.512a17.656 17.656 0 0 1 25.552 15.792v9.32a52.96 52.96 0 0 1-29.28 47.376L678.8 622.8a17.656 17.656 0 0 1-25.552-15.792v-9.312a52.96 52.96 0 0 1 29.28-47.376z"/></svg>
|
After Width: | Height: | Size: 854 B |
1
docs/src/.vuepress/public/assets/image/features.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="1024" height="1024"><defs><linearGradient id="a" x1="522.593" x2="522.593" y1="-70.302" y2="-335.937" gradientUnits="userSpaceOnUse" spreadMethod="pad"><stop offset="0" stop-color="#fe5d5a" stop-opacity=".1"/><stop offset=".908" stop-color="#ef1220" stop-opacity=".5"/></linearGradient><linearGradient id="b" x1="107.12" x2="935.038" y1="-373.67" y2="-373.67" gradientUnits="userSpaceOnUse" spreadMethod="pad"><stop offset="0" stop-color="#ff5e59"/><stop offset="1" stop-color="#f01422"/></linearGradient><linearGradient id="c" x1="519.405" x2="519.405" y1="-195.547" y2="-726.816" gradientUnits="userSpaceOnUse" spreadMethod="pad"><stop offset="0" stop-color="#ffe2e2"/><stop offset=".888" stop-color="#ff8e8e"/></linearGradient><linearGradient id="d" x1="191.5" x2="483.9" y1="-564.9" y2="-564.9" gradientUnits="userSpaceOnUse" spreadMethod="pad"><stop offset="0" stop-color="#e92700" stop-opacity=".3"/><stop offset=".013" stop-color="#ef1220" stop-opacity=".2"/></linearGradient><linearGradient id="e" x1="403.502" x2="253.121" y1="-847.32" y2="-586.853" gradientUnits="userSpaceOnUse" spreadMethod="pad"><stop offset="0" stop-color="#ff5e59"/><stop offset=".201" stop-color="#f01422"/></linearGradient><linearGradient id="f" x1="330.485" x2="330.485" y1="-801.787" y2="-625.789" gradientUnits="userSpaceOnUse" spreadMethod="pad"><stop offset="0" stop-color="#ff5e59"/><stop offset=".201" stop-color="#f01422"/></linearGradient><linearGradient id="g" x1="397.351" x2="256.845" y1="-647.231" y2="-890.596" gradientUnits="userSpaceOnUse" spreadMethod="pad"><stop offset="0" stop-color="#ffa6a6"/><stop offset=".908" stop-color="#ff6b5d"/></linearGradient></defs><path fill="url(#a)" d="M501.2 662.3 327.6 763.8c-13.9 8.1-14.2 28.1-.5 36.7l179.1 97.7c10.9 5.9 24.1 5.9 34.9-.1l177-97.9c13.6-8.5 13.4-28.3-.3-36.5l-168.4-101c-14.8-9-33.3-9.1-48.2-.4Z"/><path fill="#f63037" d="m110.2 525.7-3.1 77.6 57.5 18.5L184 519.4Z"/><path fill="url(#b)" d="m476.6 363.5-328 154.6c-21 42.7-55.4 65.4-35.5 103.5 4.2 8 9.4 14.4 15.4 18.1l358.2 195.5c21.8 11.9 48.1 11.8 69.8-.2l354-195.8c27.2-16.9 34.8-90.3 7.3-106.8L573 364.1c-29.7-17.8-66.6-18-96.4-.6Z"/><path fill="url(#c)" d="M476.6 298.7 129.4 501.6c-27.8 16.3-28.4 56.3-1 73.3l358.2 195.5c21.8 11.9 48.1 11.8 69.8-.2l354-195.8c27.2-16.9 26.9-56.6-.6-73.1L573 299.3c-29.7-17.8-66.6-18-96.4-.6Z"/><path fill="#ff8989" fill-opacity=".31" d="m481.2 387.8 39.4 123.4c1.1 3.4 4 6 7.6 6.6l173.4 30.4-33-118.3c-.9-3.3-3.6-5.8-7-6.5l-180.4-35.6ZM327 499.2l40.4 101.1L496.7 525c2.5-1.5 3.7-4.5 2.7-7.3l-36-106.8-127.6 65c-8.6 4.3-12.4 14.4-8.8 23.3ZM523.8 540.5l-140.3 77.2L567.2 659c3.2.7 6.6.1 9.3-1.6l134.6-85-174.7-33.8c-4.3-1-8.7-.3-12.6 1.9Z"/><path fill="url(#d)" d="M483.9 406.1c0 35.46-65.46 64.2-146.2 64.2s-146.2-28.74-146.2-64.2c0-35.46 65.46-64.2 146.2-64.2s146.2 28.74 146.2 64.2Z"/><path fill="url(#e)" d="m254.2 188.4-123 83.1c-1.8 1.3-2.6 3.6-1.8 5.7l39.1 110.6c.6 1.7 2 2.9 3.8 3.2l221.8 40.5c1.3.3 2.7-.1 3.7-.8l131.7-93.6c1.9-1.4 2.6-3.9 1.7-6.1l-49.4-107c-.6-1.5-2.1-2.6-3.7-2.8l-220.3-33.5c-1.3-.2-2.6.1-3.6.7Z"/><path fill="url(#f)" d="m528.6 274.5 3 59.1-205 65.6-177.2-72.7-20-49.2 1.9-54.1Z"/><path fill="url(#g)" d="m250.6 138-112.3 76c-6 4.1-8.5 11.7-6.1 18.5l34.2 96.6c1.9 5.4 6.6 9.3 12.1 10.4l211 38.5c4.3.7 8.6-.2 12.1-2.7l120.5-85.5c6.3-4.4 8.4-12.7 5.3-19.7l-43.1-93.5c-2.2-4.9-6.8-8.3-12.1-9.1L262 135.6c-4-.7-8 .2-11.4 2.4Z"/><path fill="#fff" d="m419.8 252.8-79-11-29-57.7c-3.8-7.6-13.2-10.7-20.8-6.9-7.6 3.8-10.7 13.2-6.9 20.8l26.6 52.9-61.8 42.2c-7.1 4.8-8.9 14.5-4.1 21.5 3 4.4 7.9 6.8 12.8 6.8 3 0 6-.9 8.7-2.7l68-46.4 81.1 11.2c.7.1 1.4.1 2.1.1 7.6 0 14.3-5.6 15.3-13.4 1.4-8.4-4.5-16.2-13-17.4Z"/></svg>
|
After Width: | Height: | Size: 3.6 KiB |
1
docs/src/.vuepress/public/assets/image/github-dark.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg width="98" height="96" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M48.854 0C21.839 0 0 22 0 49.217c0 21.756 13.993 40.172 33.405 46.69 2.427.49 3.316-1.059 3.316-2.362 0-1.141-.08-5.052-.08-9.127-13.59 2.934-16.42-5.867-16.42-5.867-2.184-5.704-5.42-7.17-5.42-7.17-4.448-3.015.324-3.015.324-3.015 4.934.326 7.523 5.052 7.523 5.052 4.367 7.496 11.404 5.378 14.235 4.074.404-3.178 1.699-5.378 3.074-6.6-10.839-1.141-22.243-5.378-22.243-24.283 0-5.378 1.94-9.778 5.014-13.2-.485-1.222-2.184-6.275.486-13.038 0 0 4.125-1.304 13.426 5.052a46.97 46.97 0 0 1 12.214-1.63c4.125 0 8.33.571 12.213 1.63 9.302-6.356 13.427-5.052 13.427-5.052 2.67 6.763.97 11.816.485 13.038 3.155 3.422 5.015 7.822 5.015 13.2 0 18.905-11.404 23.06-22.324 24.283 1.78 1.548 3.316 4.481 3.316 9.126 0 6.6-.08 11.897-.08 13.526 0 1.304.89 2.853 3.316 2.364 19.412-6.52 33.405-24.935 33.405-46.691C97.707 22 75.788 0 48.854 0z" fill="#24292f"/></svg>
|
After Width: | Height: | Size: 963 B |
1
docs/src/.vuepress/public/assets/image/github-light.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg width="98" height="96" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M48.854 0C21.839 0 0 22 0 49.217c0 21.756 13.993 40.172 33.405 46.69 2.427.49 3.316-1.059 3.316-2.362 0-1.141-.08-5.052-.08-9.127-13.59 2.934-16.42-5.867-16.42-5.867-2.184-5.704-5.42-7.17-5.42-7.17-4.448-3.015.324-3.015.324-3.015 4.934.326 7.523 5.052 7.523 5.052 4.367 7.496 11.404 5.378 14.235 4.074.404-3.178 1.699-5.378 3.074-6.6-10.839-1.141-22.243-5.378-22.243-24.283 0-5.378 1.94-9.778 5.014-13.2-.485-1.222-2.184-6.275.486-13.038 0 0 4.125-1.304 13.426 5.052a46.97 46.97 0 0 1 12.214-1.63c4.125 0 8.33.571 12.213 1.63 9.302-6.356 13.427-5.052 13.427-5.052 2.67 6.763.97 11.816.485 13.038 3.155 3.422 5.015 7.822 5.015 13.2 0 18.905-11.404 23.06-22.324 24.283 1.78 1.548 3.316 4.481 3.316 9.126 0 6.6-.08 11.897-.08 13.526 0 1.304.89 2.853 3.316 2.364 19.412-6.52 33.405-24.935 33.405-46.691C97.707 22 75.788 0 48.854 0z" fill="#fff"/></svg>
|
After Width: | Height: | Size: 960 B |
1
docs/src/.vuepress/public/assets/image/layout.svg
Normal file
After Width: | Height: | Size: 9.0 KiB |
1
docs/src/.vuepress/public/assets/image/markdown.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" class="icon" viewBox="0 0 1536 1024"><path fill="#1296db" d="M1425.067.256H110.933A110.933 110.933 0 0 0 0 110.848v723.627a110.933 110.933 0 0 0 110.933 110.933h1314.39c61.269 0 110.933-49.75 110.677-110.677V110.848A110.933 110.933 0 0 0 1425.067.256z" class="selected" data-spm-anchor-id="a313x.7781069.0.i4"/><path fill="#FFF" d="M664.747 723.797V435.883L517.12 620.373l-147.456-184.49v288l-148.053-67.158V221.781h147.626l147.627 184.576 147.541-184.576h147.627v565.76z"/><path d="M1024 0h426.667A85.333 85.333 0 0 1 1536 85.333v768a85.333 85.333 0 0 1-85.333 85.334H1024V0z" opacity=".1"/><path fill="#FFF" d="m1256.96 731.307-170.667-216.491h113.75V304.64h113.749v210.176h113.835z" opacity=".5"/></svg>
|
After Width: | Height: | Size: 771 B |
BIN
docs/src/.vuepress/public/favicon.ico
Normal file
After Width: | Height: | Size: 66 KiB |
BIN
docs/src/.vuepress/public/logo.png
Normal file
After Width: | Height: | Size: 92 KiB |
1
docs/src/.vuepress/public/logo.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="1200" class="icon" viewBox="0 0 3280.944 2800"><path fill="#41b883" d="M1645.332 601.004h375.675L1081.82 2238.478 142.636 601.004h718.477l220.708 379.704 216.013-379.704z"/><path fill="#41b883" d="M142.636 601.004l939.185 1637.474 939.186-1637.474h-375.675l-563.51 982.484-568.208-982.484z"/><path fill="#35495e" d="M513.188 601.004l568.207 987.23 563.511-987.23h-347.498l-216.013 379.704-220.708-379.704zM1607.792 1311.83l594.678 2.293 187.353-316.325-598.662 2.292zM2198.506 1909.57C2867.436 732.7 2939.502 605.426 2937.874 603.78c-.715-.723 45.303-1.314 102.262-1.314s103.562.428 103.562.951c0 .523-208.57 367.978-463.491 816.567L2216.715 2235.6l-102.1.596-102.102.596z"/><path fill="#41b883" d="M1680.563 2233.328c0-1.34 168.208-298.145 440.375-777.048a4135645.775 4135645.775 0 00337.619-594.19l146.13-257.25 170.746-.04 170.747-.04-5.536 9.741c-3.044 5.358-43.727 77.302-90.407 159.875-85.356 150.992-337.562 595.163-656.602 1156.373l-172 302.559-170.536.588c-93.795.322-170.536.069-170.536-.567z"/><path fill="#35495e" d="M1429.783 1625.351l594.679 2.292 187.353-316.324-598.662 2.292z"/><path fill="#41b883" d="M1524.207 1464.903l608.285 6.877 173.746-320.909h-619.072z"/></svg>
|
After Width: | Height: | Size: 1.2 KiB |
25
docs/src/.vuepress/sidebar.ts
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
import { sidebar } from "vuepress-theme-hope";
|
||||||
|
|
||||||
|
export default sidebar({
|
||||||
|
"/": [
|
||||||
|
"",
|
||||||
|
{
|
||||||
|
text: "案例",
|
||||||
|
icon: "laptop-code",
|
||||||
|
prefix: "demo/",
|
||||||
|
link: "demo/",
|
||||||
|
children: "structure",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
text: "文档",
|
||||||
|
icon: "book",
|
||||||
|
prefix: "guide/",
|
||||||
|
children: "structure",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
text: "幻灯片",
|
||||||
|
icon: "person-chalkboard",
|
||||||
|
link: "https://plugin-md-enhance.vuejs.press/zh/guide/content/revealjs/demo.html",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
});
|
3
docs/src/.vuepress/styles/config.scss
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
// you can change config here
|
||||||
|
$colors: #c0392b, #d35400, #f39c12, #27ae60, #16a085, #2980b9, #8e44ad, #2c3e50,
|
||||||
|
#7f8c8d !default;
|
1
docs/src/.vuepress/styles/index.scss
Normal file
@ -0,0 +1 @@
|
|||||||
|
// place your custom styles here
|
2
docs/src/.vuepress/styles/palette.scss
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
// you can change colors here
|
||||||
|
$theme-color: #096dd9;
|
187
docs/src/.vuepress/theme.ts
Normal file
@ -0,0 +1,187 @@
|
|||||||
|
import { hopeTheme } from "vuepress-theme-hope";
|
||||||
|
import navbar from "./navbar.js";
|
||||||
|
import sidebar from "./sidebar.js";
|
||||||
|
|
||||||
|
export default hopeTheme({
|
||||||
|
hostname: "https://vuepress-theme-hope-docs-demo.netlify.app",
|
||||||
|
|
||||||
|
author: {
|
||||||
|
name: "Mr.Hope",
|
||||||
|
url: "https://mister-hope.com",
|
||||||
|
},
|
||||||
|
|
||||||
|
iconAssets: "fontawesome-with-brands",
|
||||||
|
|
||||||
|
logo: "https://theme-hope-assets.vuejs.press/logo.svg",
|
||||||
|
|
||||||
|
repo: "vuepress-theme-hope/vuepress-theme-hope",
|
||||||
|
|
||||||
|
docsDir: "src",
|
||||||
|
|
||||||
|
// 导航栏
|
||||||
|
navbar,
|
||||||
|
|
||||||
|
// 侧边栏
|
||||||
|
sidebar,
|
||||||
|
|
||||||
|
// 页脚
|
||||||
|
footer: "默认页脚",
|
||||||
|
displayFooter: true,
|
||||||
|
|
||||||
|
// 加密配置
|
||||||
|
encrypt: {
|
||||||
|
config: {
|
||||||
|
"/demo/encrypt.html": ["1234"],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
// 多语言配置
|
||||||
|
metaLocales: {
|
||||||
|
editLink: "在 GitHub 上编辑此页",
|
||||||
|
},
|
||||||
|
|
||||||
|
// 如果想要实时查看任何改变,启用它。注: 这对更新性能有很大负面影响
|
||||||
|
// hotReload: true,
|
||||||
|
|
||||||
|
// 在这里配置主题提供的插件
|
||||||
|
plugins: {
|
||||||
|
// 你应该自行生成自己的评论服务
|
||||||
|
comment: {
|
||||||
|
provider: "Giscus",
|
||||||
|
repo: "vuepress-theme-hope/giscus-discussions",
|
||||||
|
repoId: "R_kgDOG_Pt2A",
|
||||||
|
category: "Announcements",
|
||||||
|
categoryId: "DIC_kwDOG_Pt2M4COD69",
|
||||||
|
},
|
||||||
|
|
||||||
|
components: {
|
||||||
|
components: ["Badge", "VPCard"],
|
||||||
|
},
|
||||||
|
|
||||||
|
// 此处开启了很多功能用于演示,你应仅保留用到的功能。
|
||||||
|
mdEnhance: {
|
||||||
|
align: true,
|
||||||
|
attrs: true,
|
||||||
|
codetabs: true,
|
||||||
|
component: true,
|
||||||
|
demo: true,
|
||||||
|
figure: true,
|
||||||
|
imgLazyload: true,
|
||||||
|
imgSize: true,
|
||||||
|
include: true,
|
||||||
|
mark: true,
|
||||||
|
stylize: [
|
||||||
|
{
|
||||||
|
matcher: "Recommended",
|
||||||
|
replacer: ({ tag }) => {
|
||||||
|
if (tag === "em")
|
||||||
|
return {
|
||||||
|
tag: "Badge",
|
||||||
|
attrs: { type: "tip" },
|
||||||
|
content: "Recommended",
|
||||||
|
};
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
sub: true,
|
||||||
|
sup: true,
|
||||||
|
tabs: true,
|
||||||
|
vPre: true,
|
||||||
|
|
||||||
|
// 在启用之前安装 chart.js
|
||||||
|
// chart: true,
|
||||||
|
|
||||||
|
// insert component easily
|
||||||
|
|
||||||
|
// 在启用之前安装 echarts
|
||||||
|
// echarts: true,
|
||||||
|
|
||||||
|
// 在启用之前安装 flowchart.ts
|
||||||
|
// flowchart: true,
|
||||||
|
|
||||||
|
// gfm requires mathjax-full to provide tex support
|
||||||
|
// gfm: true,
|
||||||
|
|
||||||
|
// 在启用之前安装 katex
|
||||||
|
// katex: true,
|
||||||
|
|
||||||
|
// 在启用之前安装 mathjax-full
|
||||||
|
// mathjax: true,
|
||||||
|
|
||||||
|
// 在启用之前安装 mermaid
|
||||||
|
// mermaid: true,
|
||||||
|
|
||||||
|
// playground: {
|
||||||
|
// presets: ["ts", "vue"],
|
||||||
|
// },
|
||||||
|
|
||||||
|
// 在启用之前安装 reveal.js
|
||||||
|
// revealJs: {
|
||||||
|
// plugins: ["highlight", "math", "search", "notes", "zoom"],
|
||||||
|
// },
|
||||||
|
|
||||||
|
// 在启用之前安装 @vue/repl
|
||||||
|
// vuePlayground: true,
|
||||||
|
|
||||||
|
// install sandpack-vue3 before enabling it
|
||||||
|
// sandpack: true,
|
||||||
|
},
|
||||||
|
|
||||||
|
// 如果你需要 PWA。安装 @vuepress/plugin-pwa 并取消下方注释
|
||||||
|
// pwa: {
|
||||||
|
// favicon: "/favicon.ico",
|
||||||
|
// cacheHTML: true,
|
||||||
|
// cachePic: true,
|
||||||
|
// appendBase: true,
|
||||||
|
// apple: {
|
||||||
|
// icon: "/assets/icon/apple-icon-152.png",
|
||||||
|
// statusBarColor: "black",
|
||||||
|
// },
|
||||||
|
// msTile: {
|
||||||
|
// image: "/assets/icon/ms-icon-144.png",
|
||||||
|
// color: "#ffffff",
|
||||||
|
// },
|
||||||
|
// manifest: {
|
||||||
|
// icons: [
|
||||||
|
// {
|
||||||
|
// src: "/assets/icon/chrome-mask-512.png",
|
||||||
|
// sizes: "512x512",
|
||||||
|
// purpose: "maskable",
|
||||||
|
// type: "image/png",
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// src: "/assets/icon/chrome-mask-192.png",
|
||||||
|
// sizes: "192x192",
|
||||||
|
// purpose: "maskable",
|
||||||
|
// type: "image/png",
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// src: "/assets/icon/chrome-512.png",
|
||||||
|
// sizes: "512x512",
|
||||||
|
// type: "image/png",
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// src: "/assets/icon/chrome-192.png",
|
||||||
|
// sizes: "192x192",
|
||||||
|
// type: "image/png",
|
||||||
|
// },
|
||||||
|
// ],
|
||||||
|
// shortcuts: [
|
||||||
|
// {
|
||||||
|
// name: "Demo",
|
||||||
|
// short_name: "Demo",
|
||||||
|
// url: "/demo/",
|
||||||
|
// icons: [
|
||||||
|
// {
|
||||||
|
// src: "/assets/icon/guide-maskable.png",
|
||||||
|
// sizes: "192x192",
|
||||||
|
// purpose: "maskable",
|
||||||
|
// type: "image/png",
|
||||||
|
// },
|
||||||
|
// ],
|
||||||
|
// },
|
||||||
|
// ],
|
||||||
|
// },
|
||||||
|
// },
|
||||||
|
},
|
||||||
|
});
|
285
docs/src/README.md
Normal file
@ -0,0 +1,285 @@
|
|||||||
|
---
|
||||||
|
home: true
|
||||||
|
icon: home
|
||||||
|
title: 项目主页
|
||||||
|
heroImage: https://cdn.liteyuki.icu/static/img/logo.png
|
||||||
|
bgImage: "https://cdn.liteyuki.icu/static/img/gra.png"
|
||||||
|
bgImageDark: https://theme-hope-assets.vuejs.press/bg/6-dark.svg
|
||||||
|
bgImageStyle:
|
||||||
|
background-attachment: fixed
|
||||||
|
heroText: LiteyukiBot 6
|
||||||
|
tagline: 一个基于Nonebot的OneBot标准的聊天机器人
|
||||||
|
actions:
|
||||||
|
- text: 使用指南
|
||||||
|
icon: lightbulb
|
||||||
|
link: ./demo/
|
||||||
|
type: primary
|
||||||
|
|
||||||
|
- text: 文档
|
||||||
|
link: ./guide/
|
||||||
|
|
||||||
|
highlights:
|
||||||
|
- header: 安装
|
||||||
|
image: /assets/image/box.svg
|
||||||
|
bgImage: https://theme-hope-assets.vuejs.press/bg/3-light.svg
|
||||||
|
bgImageDark: https://theme-hope-assets.vuejs.press/bg/3-dark.svg
|
||||||
|
highlights:
|
||||||
|
- title: 安装<code>Git</code>和<code>Python3.10+</code>环境
|
||||||
|
- title: 使用<code>git clone https://github.com/snowykami/LiteyukiBot</code>克隆项目到本地。
|
||||||
|
details: 你也可以使用 Gitee 镜像:<code>https://gitee.com/snowykami/LiteyukiBot</code>。
|
||||||
|
- title: 使用<code>cd LiteyukiBot</code>切入到项目目录
|
||||||
|
- title: 使用<code>pip install -r requirements.txt</code>安装依赖项
|
||||||
|
details: 部分情况下需要指定Python安装,请使用<code>python -m pip install -r requirements.txt</code>
|
||||||
|
- title: 使用<code>python main.py</code>启动你的机器人
|
||||||
|
|
||||||
|
- header: 在 Markdown 中添加你想要的内容
|
||||||
|
description: 我们扩展了标准的 CommonMark 规范,为你添加了成吨功能。
|
||||||
|
image: /assets/image/markdown.svg
|
||||||
|
bgImage: https://theme-hope-assets.vuejs.press/bg/2-light.svg
|
||||||
|
bgImageDark: https://theme-hope-assets.vuejs.press/bg/2-dark.svg
|
||||||
|
bgImageStyle:
|
||||||
|
background-repeat: repeat
|
||||||
|
background-size: initial
|
||||||
|
features:
|
||||||
|
- title: 链接检查
|
||||||
|
icon: clipboard-check
|
||||||
|
details: 检查 Markdown 链接
|
||||||
|
link: https://theme-hope.vuejs.press/zh/guide/markdown/others.html#link-check
|
||||||
|
|
||||||
|
- title: 提示容器支持
|
||||||
|
icon: box-archive
|
||||||
|
details: 用样式装饰 Markdown 内容
|
||||||
|
link: https://theme-hope.vuejs.press/zh/guide/markdown/hint.html
|
||||||
|
|
||||||
|
- title: GFM 警告
|
||||||
|
icon: bell
|
||||||
|
details: GFM 风格的警告容器
|
||||||
|
link: https://theme-hope.vuejs.press/zh/guide/markdown/alert.html
|
||||||
|
|
||||||
|
- title: 选项卡
|
||||||
|
icon: table-columns
|
||||||
|
details: 使用选项卡对相似内容进行分组
|
||||||
|
link: https://theme-hope.vuejs.press/zh/guide/markdown/tabs.html
|
||||||
|
|
||||||
|
- title: 代码组
|
||||||
|
icon: code
|
||||||
|
details: 使用选项卡对相似代码进行分组
|
||||||
|
link: https://theme-hope.vuejs.press/zh/guide/markdown/code-tabs.html
|
||||||
|
|
||||||
|
- title: 自定义对齐支持
|
||||||
|
icon: align-center
|
||||||
|
details: 让你在 Markdown 中对段落进行对齐
|
||||||
|
link: https://theme-hope.vuejs.press/zh/guide/markdown/align.html
|
||||||
|
|
||||||
|
- title: 自定义属性支持
|
||||||
|
icon: code
|
||||||
|
details: 让你为 Markdown 元素添加属性
|
||||||
|
link: https://theme-hope.vuejs.press/zh/guide/markdown/attrs.html
|
||||||
|
|
||||||
|
- title: 上下角标支持
|
||||||
|
icon: superscript
|
||||||
|
details: 你的 Markdown 现在将支持上下角标
|
||||||
|
link: https://theme-hope.vuejs.press/zh/guide/markdown/sup-sub.html
|
||||||
|
|
||||||
|
- title: 脚注
|
||||||
|
icon: quote-left
|
||||||
|
details: 你的 Markdown 现在将支持脚注
|
||||||
|
link: https://theme-hope.vuejs.press/zh/guide/markdown/footnote.html
|
||||||
|
|
||||||
|
- title: 标记支持
|
||||||
|
icon: highlighter
|
||||||
|
details: 让你在 Markdown 中对词句进行标记
|
||||||
|
link: https://theme-hope.vuejs.press/zh/guide/markdown/mark.html
|
||||||
|
|
||||||
|
- title: 任务列表
|
||||||
|
icon: square-check
|
||||||
|
details: 在 Markdown 中使用任务列表
|
||||||
|
link: https://theme-hope.vuejs.press/zh/guide/markdown/tasklist.html
|
||||||
|
|
||||||
|
- title: 图片语法
|
||||||
|
icon: image
|
||||||
|
details: 使用改进的语法指定图片大小与颜色模式
|
||||||
|
link: https://theme-hope.vuejs.press/zh/guide/markdown/image.html
|
||||||
|
|
||||||
|
- title: 组件支持
|
||||||
|
icon: puzzle-piece
|
||||||
|
details: 在 Markdown 中轻松插入组件
|
||||||
|
link: https://theme-hope.vuejs.press/zh/guide/markdown/component.html
|
||||||
|
|
||||||
|
- title: 图表支持
|
||||||
|
icon: chart-simple
|
||||||
|
details: 在 Markdown 中展示图表
|
||||||
|
link: https://theme-hope.vuejs.press/zh/guide/markdown/chartjs.html
|
||||||
|
|
||||||
|
- title: 流程图支持
|
||||||
|
icon: route
|
||||||
|
details: 可以在 Markdown 中直接写出流程图
|
||||||
|
link: https://theme-hope.vuejs.press/zh/guide/markdown/flowchart.html
|
||||||
|
|
||||||
|
- title: Mermaid 支持
|
||||||
|
icon: chart-pie
|
||||||
|
details: 可以在 Markdown 中添加 Mermaid 图例
|
||||||
|
link: https://theme-hope.vuejs.press/zh/guide/markdown/mermaid.html
|
||||||
|
|
||||||
|
- title: Tex 支持
|
||||||
|
icon: square-root-variable
|
||||||
|
details: Markdown 现在也可以支持 Tex 语法以显示公式
|
||||||
|
link: https://theme-hope.vuejs.press/zh/guide/markdown/tex.html
|
||||||
|
|
||||||
|
- title: 导入文件支持
|
||||||
|
icon: fab fa-markdown
|
||||||
|
details: 将你的文档分段,并在 Markdown 中导入
|
||||||
|
link: https://theme-hope.vuejs.press/zh/guide/markdown/include.html
|
||||||
|
|
||||||
|
- title: 交互演示支持
|
||||||
|
icon: code
|
||||||
|
details: 你可以在 Markdown 中添加交互演示
|
||||||
|
link: https://theme-hope.vuejs.press/zh/guide/markdown/playground.html
|
||||||
|
|
||||||
|
- title: Vue 交互演示支持
|
||||||
|
icon: fab fa-vuejs
|
||||||
|
details: 在交互演示中展示 Vue 组件
|
||||||
|
link: https://theme-hope.vuejs.press/zh/guide/markdown/vue-playground.html
|
||||||
|
|
||||||
|
- title: Sandpack 交互演示支持
|
||||||
|
icon: code
|
||||||
|
details: Sandpack 驱动的实时的编码环境
|
||||||
|
link: https://theme-hope.vuejs.press/zh/guide/markdown/sandpack.html
|
||||||
|
|
||||||
|
- title: 代码案例支持
|
||||||
|
icon: laptop-code
|
||||||
|
details: 你可以很方便的插入代码案例
|
||||||
|
link: https://theme-hope.vuejs.press/zh/guide/markdown/demo.html
|
||||||
|
|
||||||
|
- title: 幻灯片支持
|
||||||
|
icon: person-chalkboard
|
||||||
|
details: 通过 Reveal.js 在 Markdown 中插入幻灯片
|
||||||
|
link: https://theme-hope.vuejs.press/zh/guide/markdown/revealjs.html
|
||||||
|
|
||||||
|
- header: 布局
|
||||||
|
description: 一个带有完整无障碍支持的响应式布局。
|
||||||
|
image: /assets/image/layout.svg
|
||||||
|
bgImage: https://theme-hope-assets.vuejs.press/bg/5-light.svg
|
||||||
|
bgImageDark: https://theme-hope-assets.vuejs.press/bg/5-dark.svg
|
||||||
|
highlights:
|
||||||
|
- title: 布局增强
|
||||||
|
icon: object-group
|
||||||
|
details: 添加路径导航、页脚、改进的导航栏、改进的页面导航等。
|
||||||
|
link: https://theme-hope.vuejs.press/zh/guide/layout/
|
||||||
|
|
||||||
|
- title: 深色模式
|
||||||
|
icon: circle-half-stroke
|
||||||
|
details: 可以自由切换浅色模式与深色模式
|
||||||
|
link: https://theme-hope.vuejs.press/zh/guide/interface/darkmode.html
|
||||||
|
|
||||||
|
- title: 主题色切换
|
||||||
|
icon: palette
|
||||||
|
details: 支持自定义主题色并允许用户在预设的主题颜色之间切换
|
||||||
|
link: https://theme-hope.vuejs.press/zh/guide/interface/theme-color.html
|
||||||
|
|
||||||
|
- title: 幻灯片页面
|
||||||
|
icon: person-chalkboard
|
||||||
|
details: 添加幻灯片页面以显示你喜欢的内容
|
||||||
|
link: https://theme-hope.vuejs.press/zh/guide/layout/slides
|
||||||
|
|
||||||
|
- title: 更多
|
||||||
|
icon: ellipsis
|
||||||
|
details: RTL 布局,打印支持,全局按钮等
|
||||||
|
link: https://theme-hope.vuejs.press/zh/guide/interface/others.html
|
||||||
|
|
||||||
|
- header: 新功能
|
||||||
|
image: /assets/image/features.svg
|
||||||
|
bgImage: https://theme-hope-assets.vuejs.press/bg/1-light.svg
|
||||||
|
bgImageDark: https://theme-hope-assets.vuejs.press/bg/1-dark.svg
|
||||||
|
features:
|
||||||
|
- title: 浏览量与评论
|
||||||
|
icon: comment-dots
|
||||||
|
details: 配合 Waline 来开启阅读量统计与评论支持
|
||||||
|
link: https://theme-hope.vuejs.press/zh/guide/feature/comment.html
|
||||||
|
|
||||||
|
- title: 文章信息
|
||||||
|
icon: circle-info
|
||||||
|
details: 为你的文章添加作者、写作日期、预计阅读时间、字数统计等信息
|
||||||
|
link: https://theme-hope.vuejs.press/zh/guide/feature/page-info.html
|
||||||
|
|
||||||
|
- title: 文章加密
|
||||||
|
icon: lock
|
||||||
|
details: 你可以为你的特定页面或特定目录进行加密,以便陌生人不能随意访问它们
|
||||||
|
link: https://theme-hope.vuejs.press/zh/guide/feature/encrypt.html
|
||||||
|
|
||||||
|
- title: 搜索支持
|
||||||
|
icon: search
|
||||||
|
details: 支持 docsearch 和基于客户端的搜索
|
||||||
|
link: https://theme-hope.vuejs.press/zh/guide/feature/search.html
|
||||||
|
|
||||||
|
- title: 代码复制
|
||||||
|
icon: copy
|
||||||
|
details: 一键复制代码块中的代码
|
||||||
|
link: https://theme-hope.vuejs.press/zh/guide/feature/copy-code.html
|
||||||
|
|
||||||
|
- title: 图片预览
|
||||||
|
icon: image
|
||||||
|
details: 像相册一样允许你浏览、缩放并分享你的页面图片
|
||||||
|
link: https://theme-hope.vuejs.press/zh/guide/feature/photo-swipe.html
|
||||||
|
|
||||||
|
- header: 博客
|
||||||
|
description: 通过主题创建个人博客
|
||||||
|
image: /assets/image/blog.svg
|
||||||
|
bgImage: https://theme-hope-assets.vuejs.press/bg/5-light.svg
|
||||||
|
bgImageDark: https://theme-hope-assets.vuejs.press/bg/5-dark.svg
|
||||||
|
highlights:
|
||||||
|
- title: 博客功能
|
||||||
|
icon: blog
|
||||||
|
details: 通过文章的日期、标签和分类展示文章
|
||||||
|
link: https://theme-hope.vuejs.press/zh/guide/blog/intro.html
|
||||||
|
|
||||||
|
- title: 博客主页
|
||||||
|
icon: home
|
||||||
|
details: 全新博客主页
|
||||||
|
link: https://theme-hope.vuejs.press/zh/guide/blog/home.html
|
||||||
|
|
||||||
|
- title: 博主信息
|
||||||
|
icon: home
|
||||||
|
details: 自定义名称、头像、座右铭和社交媒体链接
|
||||||
|
link: https://theme-hope.vuejs.press/zh/guide/blog/blogger.html
|
||||||
|
|
||||||
|
- title: 时间线
|
||||||
|
icon: home
|
||||||
|
details: 在时间线中浏览和通读博文
|
||||||
|
link: https://theme-hope.vuejs.press/zh/guide/blog/timeline.html
|
||||||
|
|
||||||
|
- header: 高级
|
||||||
|
description: 增强站点与用户体验的高级功能
|
||||||
|
image: /assets/image/advanced.svg
|
||||||
|
bgImage: https://theme-hope-assets.vuejs.press/bg/4-light.svg
|
||||||
|
bgImageDark: https://theme-hope-assets.vuejs.press/bg/4-dark.svg
|
||||||
|
highlights:
|
||||||
|
- title: SEO 增强
|
||||||
|
icon: dumbbell
|
||||||
|
details: 将最终生成的网页针对搜索引擎进行优化。
|
||||||
|
link: https://theme-hope.vuejs.press/zh/guide/advanced/seo.html
|
||||||
|
|
||||||
|
- title: Sitemap
|
||||||
|
icon: sitemap
|
||||||
|
details: 自动为你的网站生成 Sitemap
|
||||||
|
link: https://theme-hope.vuejs.press/zh/guide/advanced/sitemap.html
|
||||||
|
|
||||||
|
- title: Feed 支持
|
||||||
|
icon: rss
|
||||||
|
details: 生成你的 Feed,并通知你的用户订阅它
|
||||||
|
link: https://theme-hope.vuejs.press/zh/guide/advanced/feed.html
|
||||||
|
|
||||||
|
- title: PWA 支持
|
||||||
|
icon: mobile-screen
|
||||||
|
details: 让你的网站更像一个 APP
|
||||||
|
link: https://theme-hope.vuejs.press/zh/guide/advanced/pwa.html
|
||||||
|
|
||||||
|
copyright: false
|
||||||
|
footer: 使用 <a href="https://theme-hope.vuejs.press/zh/" target="_blank">VuePress Theme Hope</a> 主题 | MIT 协议, 版权所有 © 2019-present Mr.Hope
|
||||||
|
---
|
||||||
|
|
||||||
|
这是项目主页的案例。你可以在这里放置你的主体内容。
|
||||||
|
|
||||||
|
想要使用此布局,你需要在页面 front matter 中设置 `home: true`。
|
||||||
|
|
||||||
|
配置项的相关说明详见 [项目主页配置](https://theme-hope.vuejs.press/zh/guide/layout/home/)。
|
9
docs/src/demo/README.md
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
title: 主要功能与配置演示
|
||||||
|
index: false
|
||||||
|
icon: laptop-code
|
||||||
|
category:
|
||||||
|
- 使用指南
|
||||||
|
---
|
||||||
|
|
||||||
|
<Catalog />
|
42
docs/src/demo/disable.md
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
---
|
||||||
|
title: 布局与功能禁用
|
||||||
|
icon: gears
|
||||||
|
order: 4
|
||||||
|
category:
|
||||||
|
- 使用指南
|
||||||
|
tag:
|
||||||
|
- 禁用
|
||||||
|
|
||||||
|
navbar: false
|
||||||
|
sidebar: false
|
||||||
|
|
||||||
|
breadcrumb: false
|
||||||
|
pageInfo: false
|
||||||
|
contributors: false
|
||||||
|
editLink: false
|
||||||
|
lastUpdated: false
|
||||||
|
prev: false
|
||||||
|
next: false
|
||||||
|
comment: false
|
||||||
|
footer: false
|
||||||
|
|
||||||
|
backtotop: false
|
||||||
|
---
|
||||||
|
|
||||||
|
你可以通过设置页面的 Frontmatter,在页面禁用功能与布局。
|
||||||
|
|
||||||
|
<!-- more -->
|
||||||
|
|
||||||
|
本页面就是一个示例,禁用了如下功能:
|
||||||
|
|
||||||
|
- 导航栏
|
||||||
|
- 侧边栏
|
||||||
|
- 路径导航
|
||||||
|
- 页面信息
|
||||||
|
- 贡献者
|
||||||
|
- 编辑此页链接
|
||||||
|
- 更新时间
|
||||||
|
- 上一篇/下一篇 链接
|
||||||
|
- 评论
|
||||||
|
- 页脚
|
||||||
|
- 返回顶部按钮
|
15
docs/src/demo/encrypt.md
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
---
|
||||||
|
icon: lock
|
||||||
|
category:
|
||||||
|
- 使用指南
|
||||||
|
tag:
|
||||||
|
- 加密
|
||||||
|
---
|
||||||
|
|
||||||
|
# 密码加密的文章
|
||||||
|
|
||||||
|
实际的文章内容。
|
||||||
|
|
||||||
|
段落 1 文字段落 1 文字段落 1 文字段落 1 文字段落 1 文字段落 1 文字段落 1 文字段落 1 文字段落 1 文字段落 1 文字段落 1 文字段落 1 文字。
|
||||||
|
|
||||||
|
段落 2 文字段落 2 文字段落 2 文字段落 2 文字段落 2 文字段落 2 文字段落 2 文字段落 2 文字段落 2 文字段落 2 文字段落 2 文字段落 2 文字段落 2 文字段落 2 文字。
|
31
docs/src/demo/layout.md
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
---
|
||||||
|
title: 布局
|
||||||
|
icon: object-group
|
||||||
|
order: 2
|
||||||
|
category:
|
||||||
|
- 指南
|
||||||
|
tag:
|
||||||
|
- 布局
|
||||||
|
---
|
||||||
|
|
||||||
|
布局包括:
|
||||||
|
|
||||||
|
- [导航栏](https://theme-hope.vuejs.press/zh/guide/layout/navbar.html)
|
||||||
|
- [侧边栏](https://theme-hope.vuejs.press/zh/guide/layout/sidebar.html)
|
||||||
|
- [页脚](https://theme-hope.vuejs.press/zh/guide/layout/footer.html)
|
||||||
|
|
||||||
|
同时每个页面包含:
|
||||||
|
|
||||||
|
- [路径导航](https://theme-hope.vuejs.press/zh/guide/layout/breadcrumb.html)
|
||||||
|
- [标题和页面信息](https://theme-hope.vuejs.press/zh/guide/feature/page-info.html)
|
||||||
|
- [TOC (文章标题列表)](https://theme-hope.vuejs.press/zh/guide/layout/page.html#标题列表)
|
||||||
|
- [贡献者、更新时间等页面元信息](https://theme-hope.vuejs.press/guide/feature/meta.html)
|
||||||
|
- [评论](https://theme-hope.vuejs.press/zh/guide/feature/comment.html)
|
||||||
|
|
||||||
|
主题也带有以下元素:
|
||||||
|
|
||||||
|
- [夜间模式按钮](https://theme-hope.vuejs.press/zh/guide/interface/darkmode.html)
|
||||||
|
- [返回顶部按钮](https://theme-hope.vuejs.press/guide/interface/others.html#返回顶部按钮)
|
||||||
|
- [打印按钮](https://theme-hope.vuejs.press/guide/interface/others.html#打印按钮)
|
||||||
|
|
||||||
|
你可以在主题选项和页面的 frontmatter 中自定义它们。
|
269
docs/src/demo/markdown.md
Normal file
@ -0,0 +1,269 @@
|
|||||||
|
---
|
||||||
|
title: Markdown 展示
|
||||||
|
icon: fab fa-markdown
|
||||||
|
order: 2
|
||||||
|
category:
|
||||||
|
- 使用指南
|
||||||
|
tag:
|
||||||
|
- Markdown
|
||||||
|
---
|
||||||
|
|
||||||
|
VuePress 主要从 Markdown 文件生成页面。因此,你可以使用它轻松生成文档或博客站点。
|
||||||
|
|
||||||
|
你应该创建和编写 Markdown 文件,以便 VuePress 可以根据文件结构将它们转换为不同的页面。
|
||||||
|
|
||||||
|
<!-- more -->
|
||||||
|
|
||||||
|
## Markdown 介绍
|
||||||
|
|
||||||
|
如果你是一个新手,还不会编写 Markdown,请先阅读 [Markdown 介绍](https://theme-hope.vuejs.press/zh/cookbook/markdown/) 和 [Markdown 演示](https://theme-hope.vuejs.press/zh/cookbook/markdown/demo.html)。
|
||||||
|
|
||||||
|
## Markdown 配置
|
||||||
|
|
||||||
|
VuePress 通过 Frontmatter 为每个 Markdown 页面引入配置。
|
||||||
|
|
||||||
|
::: info
|
||||||
|
|
||||||
|
Frontmatter 是 VuePress 中很重要的一个概念,如果你不了解它,你需要阅读 [Frontmatter 介绍](https://theme-hope.vuejs.press/zh/cookbook/vuepress/page.html#front-matter)。
|
||||||
|
|
||||||
|
:::
|
||||||
|
|
||||||
|
## Markdown 扩展
|
||||||
|
|
||||||
|
VuePress 会使用 [markdown-it](https://github.com/markdown-it/markdown-it) 来解析 Markdown 内容,因此可以借助于 markdown-it 插件来实现 [语法扩展](https://github.com/markdown-it/markdown-it#syntax-extensions) 。
|
||||||
|
|
||||||
|
### VuePress 扩展
|
||||||
|
|
||||||
|
为了丰富文档写作,VuePress 对 Markdown 语法进行了扩展。
|
||||||
|
|
||||||
|
关于这些扩展,请阅读 [VuePress 中的 Markdown 扩展](https://theme-hope.vuejs.press/zh/cookbook/vuepress/markdown.html)。
|
||||||
|
|
||||||
|
### 主题扩展
|
||||||
|
|
||||||
|
通过 [`vuepress-plugin-md-enhance`][md-enhance],主题扩展了更多 Markdown 语法,提供更加丰富的写作功能。
|
||||||
|
|
||||||
|
#### 提示容器
|
||||||
|
|
||||||
|
::: v-pre
|
||||||
|
|
||||||
|
安全的在 Markdown 中使用 {{ variable }}。
|
||||||
|
|
||||||
|
:::
|
||||||
|
|
||||||
|
::: info 自定义标题
|
||||||
|
|
||||||
|
信息容器,包含 `代码` 与 [链接](#提示容器)。
|
||||||
|
|
||||||
|
```js
|
||||||
|
const a = 1;
|
||||||
|
```
|
||||||
|
|
||||||
|
:::
|
||||||
|
|
||||||
|
::: tip 自定义标题
|
||||||
|
|
||||||
|
提示容器
|
||||||
|
|
||||||
|
:::
|
||||||
|
|
||||||
|
::: warning 自定义标题
|
||||||
|
|
||||||
|
警告容器
|
||||||
|
|
||||||
|
:::
|
||||||
|
|
||||||
|
::: caution 自定义标题
|
||||||
|
|
||||||
|
危险容器
|
||||||
|
|
||||||
|
:::
|
||||||
|
|
||||||
|
::: details 自定义标题
|
||||||
|
|
||||||
|
详情容器
|
||||||
|
|
||||||
|
:::
|
||||||
|
|
||||||
|
- [查看详情](https://theme-hope.vuejs.press/zh/guide/markdown/hint.html)
|
||||||
|
|
||||||
|
#### 代码块
|
||||||
|
|
||||||
|
::: code-tabs
|
||||||
|
|
||||||
|
@tab pnpm
|
||||||
|
|
||||||
|
```bash
|
||||||
|
pnpm add -D vuepress-theme-hope
|
||||||
|
```
|
||||||
|
|
||||||
|
@tab yarn
|
||||||
|
|
||||||
|
```bash
|
||||||
|
yarn add -D vuepress-theme-hope
|
||||||
|
```
|
||||||
|
|
||||||
|
@tab:active npm
|
||||||
|
|
||||||
|
```bash
|
||||||
|
npm i -D vuepress-theme-hope
|
||||||
|
```
|
||||||
|
|
||||||
|
:::
|
||||||
|
|
||||||
|
- [查看详情](https://theme-hope.vuejs.press/zh/guide/markdown/code-tabs.html)
|
||||||
|
|
||||||
|
#### 上下角标
|
||||||
|
|
||||||
|
19^th^ H~2~O
|
||||||
|
|
||||||
|
- [查看详情](https://theme-hope.vuejs.press/zh/guide/markdown/sup-sub.html)
|
||||||
|
|
||||||
|
#### 自定义对齐
|
||||||
|
|
||||||
|
::: center
|
||||||
|
|
||||||
|
我是居中的
|
||||||
|
|
||||||
|
:::
|
||||||
|
|
||||||
|
::: right
|
||||||
|
|
||||||
|
我在右对齐
|
||||||
|
|
||||||
|
:::
|
||||||
|
|
||||||
|
- [查看详情](https://theme-hope.vuejs.press/zh/guide/markdown/align.html)
|
||||||
|
|
||||||
|
#### Attrs
|
||||||
|
|
||||||
|
一个拥有 ID 的 **单词**{#word}。
|
||||||
|
|
||||||
|
- [查看详情](https://theme-hope.vuejs.press/zh/guide/markdown/attrs.html)
|
||||||
|
|
||||||
|
#### 脚注
|
||||||
|
|
||||||
|
此文字有脚注[^first].
|
||||||
|
|
||||||
|
[^first]: 这是脚注内容
|
||||||
|
|
||||||
|
- [查看详情](https://theme-hope.vuejs.press/zh/guide/markdown/footnote.html)
|
||||||
|
|
||||||
|
#### 标记
|
||||||
|
|
||||||
|
你可以标记 ==重要的内容== 。
|
||||||
|
|
||||||
|
- [查看详情](https://theme-hope.vuejs.press/zh/guide/markdown/mark.html)
|
||||||
|
|
||||||
|
#### 任务列表
|
||||||
|
|
||||||
|
- [x] 计划 1
|
||||||
|
- [ ] 计划 2
|
||||||
|
|
||||||
|
- [查看详情](https://theme-hope.vuejs.press/zh/guide/markdown/tasklist.html)
|
||||||
|
|
||||||
|
### 图片增强
|
||||||
|
|
||||||
|
支持为图片设置颜色模式和大小
|
||||||
|
|
||||||
|
- [查看详情](https://theme-hope.vuejs.press/zh/guide/markdown/image.html)
|
||||||
|
|
||||||
|
#### 组件
|
||||||
|
|
||||||
|
```component VPCard
|
||||||
|
title: Mr.Hope
|
||||||
|
desc: Where there is light, there is hope
|
||||||
|
logo: https://mister-hope.com/logo.svg
|
||||||
|
link: https://mister-hope.com
|
||||||
|
background: rgba(253, 230, 138, 0.15)
|
||||||
|
```
|
||||||
|
|
||||||
|
- [查看详情](https://theme-hope.vuejs.press/zh/guide/markdown/component.html)
|
||||||
|
|
||||||
|
#### 导入文件
|
||||||
|
|
||||||
|
<!-- @include: ./README.md{11-17} -->
|
||||||
|
|
||||||
|
- [查看详情](https://theme-hope.vuejs.press/zh/guide/markdown/include.html)
|
||||||
|
|
||||||
|
#### 样式化
|
||||||
|
|
||||||
|
向 Mr.Hope 捐赠一杯咖啡。 _Recommended_
|
||||||
|
|
||||||
|
- [查看详情](https://theme-hope.vuejs.press/zh/guide/markdown/stylize.html)
|
||||||
|
|
||||||
|
#### Tex 语法
|
||||||
|
|
||||||
|
$$
|
||||||
|
\frac {\partial^r} {\partial \omega^r} \left(\frac {y^{\omega}} {\omega}\right)
|
||||||
|
= \left(\frac {y^{\omega}} {\omega}\right) \left\{(\log y)^r + \sum_{i=1}^r \frac {(-1)^i r \cdots (r-i+1) (\log y)^{r-i}} {\omega^i} \right\}
|
||||||
|
$$
|
||||||
|
|
||||||
|
- [查看详情](https://theme-hope.vuejs.press/zh/guide/markdown/tex.html)
|
||||||
|
|
||||||
|
#### 图表
|
||||||
|
|
||||||
|
<iframe src="https://plugin-md-enhance-demo.vuejs.press/snippet/chartjs.html" width="100%" height="450"/>
|
||||||
|
|
||||||
|
- [查看详情](https://theme-hope.vuejs.press/zh/guide/markdown/chartjs.html)
|
||||||
|
|
||||||
|
#### Echarts
|
||||||
|
|
||||||
|
<iframe src="https://plugin-md-enhance-demo.vuejs.press/snippet/echarts.html" width="100%" height="800"/>
|
||||||
|
|
||||||
|
- [查看详情](https://theme-hope.vuejs.press/zh/guide/markdown/echarts.html)
|
||||||
|
|
||||||
|
#### 流程图
|
||||||
|
|
||||||
|
<iframe src="https://plugin-md-enhance-demo.vuejs.press/snippet/flowchart.html" width="100%" height="450"/>
|
||||||
|
|
||||||
|
- [查看详情](https://theme-hope.vuejs.press/zh/guide/markdown/flowchart.html)
|
||||||
|
|
||||||
|
#### MarkMap
|
||||||
|
|
||||||
|
<iframe src="https://plugin-md-enhance-demo.vuejs.press/snippet/markmap.html" width="100%" height="380"/>
|
||||||
|
|
||||||
|
- [查看详情](https://theme-hope.vuejs.press/zh/guide/markdown/markmap.html)
|
||||||
|
|
||||||
|
#### Mermaid
|
||||||
|
|
||||||
|
<iframe src="https://plugin-md-enhance-demo.vuejs.press/snippet/mermaid.html" width="100%" height="620"/>
|
||||||
|
|
||||||
|
- [查看详情](https://theme-hope.vuejs.press/zh/guide/markdown/mermaid.html)
|
||||||
|
|
||||||
|
#### 代码演示
|
||||||
|
|
||||||
|
<iframe src="https://plugin-md-enhance-demo.vuejs.press/snippet/code-demo.html" width="100%" height="450"/>
|
||||||
|
|
||||||
|
- [查看详情](https://theme-hope.vuejs.press/zh/guide/markdown/demo.html)
|
||||||
|
|
||||||
|
#### 交互演示
|
||||||
|
|
||||||
|
<iframe src="https://plugin-md-enhance-demo.vuejs.press/snippet/playground.html" width="100%" height="480"/>
|
||||||
|
|
||||||
|
- [查看详情](https://theme-hope.vuejs.press/zh/guide/markdown/playground.html)
|
||||||
|
|
||||||
|
#### Kotlin 交互演示
|
||||||
|
|
||||||
|
<iframe src="https://plugin-md-enhance-demo.vuejs.press/snippet/kotlin-playground.html" width="100%" height="220"/>
|
||||||
|
|
||||||
|
- [View Detail](https://theme-hope.vuejs.press/zh/guide/markdown/kotlin-playground.html)
|
||||||
|
|
||||||
|
#### Vue 交互演示
|
||||||
|
|
||||||
|
<iframe src="https://plugin-md-enhance-demo.vuejs.press/snippet/vue-playground.html" width="100%" height="380"/>
|
||||||
|
|
||||||
|
- [查看详情](https://theme-hope.vuejs.press/zh/guide/markdown/vue-playground.html)
|
||||||
|
|
||||||
|
#### Sandpack 交互演示
|
||||||
|
|
||||||
|
<iframe src="https://plugin-md-enhance-demo.vuejs.press/snippet/sandpack.html" width="100%" height="380"/>
|
||||||
|
|
||||||
|
- [查看详情](https://theme-hope.vuejs.press/zh/guide/markdown/sandpack.html)
|
||||||
|
|
||||||
|
#### 幻灯片
|
||||||
|
|
||||||
|
<iframe src="https://plugin-md-enhance-demo.vuejs.press/snippet/revealjs.html" width="100%" height="400"/>
|
||||||
|
|
||||||
|
- [查看详情](https://theme-hope.vuejs.press/zh/guide/markdown/revealjs.html)
|
||||||
|
|
||||||
|
[md-enhance]: https://plugin-md-enhance.vuejs.press/zh/
|
125
docs/src/demo/page.md
Normal file
@ -0,0 +1,125 @@
|
|||||||
|
---
|
||||||
|
# 这是文章的标题
|
||||||
|
title: 页面配置
|
||||||
|
# 你可以自定义封面图片
|
||||||
|
cover: /assets/images/cover1.jpg
|
||||||
|
# 这是页面的图标
|
||||||
|
icon: file
|
||||||
|
# 这是侧边栏的顺序
|
||||||
|
order: 3
|
||||||
|
# 设置作者
|
||||||
|
author: Ms.Hope
|
||||||
|
# 设置写作时间
|
||||||
|
date: 2020-01-01
|
||||||
|
# 一个页面可以有多个分类
|
||||||
|
category:
|
||||||
|
- 使用指南
|
||||||
|
# 一个页面可以有多个标签
|
||||||
|
tag:
|
||||||
|
- 页面配置
|
||||||
|
- 使用指南
|
||||||
|
# 此页面会在文章列表置顶
|
||||||
|
sticky: true
|
||||||
|
# 此页面会出现在星标文章中
|
||||||
|
star: true
|
||||||
|
# 你可以自定义页脚
|
||||||
|
footer: 这是测试显示的页脚
|
||||||
|
# 你可以自定义版权信息
|
||||||
|
copyright: 无版权
|
||||||
|
---
|
||||||
|
|
||||||
|
`more` 注释之前的内容被视为文章摘要。
|
||||||
|
|
||||||
|
<!-- more -->
|
||||||
|
|
||||||
|
## 页面标题
|
||||||
|
|
||||||
|
The first H1 title in Markdown will be regarded as page title.
|
||||||
|
|
||||||
|
Markdown 中的第一个 H1 标题会被视为页面标题。
|
||||||
|
|
||||||
|
你可以在 Markdown 的 Frontmatter 中设置页面标题。
|
||||||
|
|
||||||
|
```md
|
||||||
|
---
|
||||||
|
title: 页面标题
|
||||||
|
---
|
||||||
|
```
|
||||||
|
|
||||||
|
## 页面信息
|
||||||
|
|
||||||
|
你可以在 Markdown 的 Frontmatter 中设置页面信息。
|
||||||
|
|
||||||
|
- 作者设置为 Ms.Hope。
|
||||||
|
- 写作日期为 2020 年 1 月 1 日
|
||||||
|
- 分类为 “使用指南”
|
||||||
|
- 标签为 “页面配置” 和 “使用指南”
|
||||||
|
|
||||||
|
## 页面内容
|
||||||
|
|
||||||
|
你可以自由在这里书写你的 Markdown。
|
||||||
|
|
||||||
|
::: tip 图片引入
|
||||||
|
|
||||||
|
- 你可以将图片和 Markdown 文件放置在一起使用相对路径进行引用。
|
||||||
|
- 对于 `.vuepress/public` 文件夹的图片,请使用绝对链接 `/` 进行引用。
|
||||||
|
|
||||||
|
:::
|
||||||
|
|
||||||
|
## 组件
|
||||||
|
|
||||||
|
每个 Markdown 页面都会被转换为一个 Vue 组件,这意味着你可以在 Markdown 中使用 Vue 语法:
|
||||||
|
|
||||||
|
{{ 1 + 1 }}
|
||||||
|
|
||||||
|
<!-- markdownlint-disable MD033 -->
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li v-for="i in 3">{{ i }}</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<!-- markdownlint-enable MD033 -->
|
||||||
|
|
||||||
|
你也可以创建并引入你自己的组件。
|
||||||
|
|
||||||
|
<MyComponent />
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
import { defineComponent, h, ref } from 'vue';
|
||||||
|
|
||||||
|
const MyComponent = defineComponent({
|
||||||
|
setup() {
|
||||||
|
const input = ref('Hello world!');
|
||||||
|
const onInput = (e) => {
|
||||||
|
input.value = e.target.value;
|
||||||
|
};
|
||||||
|
|
||||||
|
return () => [
|
||||||
|
h('p', [
|
||||||
|
h('span','输入: '),
|
||||||
|
h('input', {
|
||||||
|
value: input.value,
|
||||||
|
onInput,
|
||||||
|
}),
|
||||||
|
]),
|
||||||
|
h('p', [h('span','输出: '), input.value]),
|
||||||
|
];
|
||||||
|
},
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
主题包含一些有用的组件。这里是一些例子:
|
||||||
|
|
||||||
|
- 文字结尾应该有深蓝色的 徽章文字 徽章。 <Badge text="徽章文字" color="#242378" />
|
||||||
|
|
||||||
|
- 一个卡片:
|
||||||
|
|
||||||
|
```component VPCard
|
||||||
|
title: Mr.Hope
|
||||||
|
desc: Where there is light, there is hope
|
||||||
|
logo: https://mister-hope.com/logo.svg
|
||||||
|
link: https://mister-hope.com
|
||||||
|
background: rgba(253, 230, 138, 0.15)
|
||||||
|
```
|
16
docs/src/guide/README.md
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
---
|
||||||
|
title: 指南
|
||||||
|
icon: lightbulb
|
||||||
|
---
|
||||||
|
|
||||||
|
## 功能亮点
|
||||||
|
|
||||||
|
### Bar
|
||||||
|
|
||||||
|
- [baz](bar/baz.md)
|
||||||
|
- ...
|
||||||
|
|
||||||
|
### Foo
|
||||||
|
|
||||||
|
- [ray](foo/ray.md)
|
||||||
|
- ...
|
13
docs/src/guide/bar/README.md
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
title: Bar 功能
|
||||||
|
icon: lightbulb
|
||||||
|
---
|
||||||
|
|
||||||
|
## 介绍
|
||||||
|
|
||||||
|
我们支持 bar 功能,...
|
||||||
|
|
||||||
|
## 详情
|
||||||
|
|
||||||
|
- [baz](baz.md)
|
||||||
|
- ...
|
6
docs/src/guide/bar/baz.md
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
title: Baz
|
||||||
|
icon: circle-info
|
||||||
|
---
|
||||||
|
|
||||||
|
功能详情...
|
13
docs/src/guide/foo/README.md
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
---
|
||||||
|
title: Foo 功能
|
||||||
|
icon: lightbulb
|
||||||
|
---
|
||||||
|
|
||||||
|
## 介绍
|
||||||
|
|
||||||
|
我们支持 foo 功能,...
|
||||||
|
|
||||||
|
## 详情
|
||||||
|
|
||||||
|
- [ray](ray.md)
|
||||||
|
- ...
|
6
docs/src/guide/foo/ray.md
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
title: Ray
|
||||||
|
icon: circle-info
|
||||||
|
---
|
||||||
|
|
||||||
|
功能详情...
|
14
docs/tsconfig.json
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"module": "NodeNext",
|
||||||
|
"moduleResolution": "NodeNext",
|
||||||
|
"target": "ES2022"
|
||||||
|
},
|
||||||
|
"include": [
|
||||||
|
"src/.vuepress/**/*.ts",
|
||||||
|
"src/.vuepress/**/*.vue"
|
||||||
|
],
|
||||||
|
"exclude": [
|
||||||
|
"node_modules"
|
||||||
|
]
|
||||||
|
}
|
@ -1,40 +0,0 @@
|
|||||||
## Plugin Commands
|
|
||||||
|
|
||||||
### 轻雪`liteyuki`
|
|
||||||
|
|
||||||
```shell
|
|
||||||
reload-liteyuki # 重载轻雪
|
|
||||||
update-liteyuki # 更新轻雪
|
|
||||||
liteyuki # 查看轻雪信息
|
|
||||||
```
|
|
||||||
|
|
||||||
### 轻雪Nonebot插件管理 `liteyuki_npm`
|
|
||||||
|
|
||||||
```shell
|
|
||||||
npm update # 更新插件索引
|
|
||||||
npm install <plugin_name> # 安装插件
|
|
||||||
npm uninstall <plugin_name> # 卸载插件
|
|
||||||
npm search <keywords...> # 搜索插件
|
|
||||||
------
|
|
||||||
Alias: npm 插件, update 更新, install 安装, uninstall 卸载, search 搜索
|
|
||||||
```
|
|
||||||
|
|
||||||
```shell
|
|
||||||
enable <plugin_name> # 启用插件
|
|
||||||
disable <plugin_name> # 禁用插件
|
|
||||||
enable-global <plugin_name> # 全局启用插件
|
|
||||||
disable-global <plugin_name> # 全局禁用插件
|
|
||||||
list-plugin # 列出所有插件
|
|
||||||
------
|
|
||||||
Alias: enable 启用, disable 停用, enable-global 全局启用, disable-global 全局停用, list-plugin 列出插件/插件列表
|
|
||||||
```
|
|
||||||
|
|
||||||
### 轻雪用户管理`liteyuki_user`
|
|
||||||
|
|
||||||
```shell
|
|
||||||
profile # 查看用户信息菜单
|
|
||||||
profile set <key> [value] # 设置用户信息或打开属性设置菜单
|
|
||||||
profile get <key> # 获取用户信息
|
|
||||||
------
|
|
||||||
Alias: profile 个人信息, set 设置, get 查询
|
|
||||||
```
|
|
@ -10,7 +10,7 @@ app = nonebot.get_app()
|
|||||||
|
|
||||||
|
|
||||||
def get_system_info():
|
def get_system_info():
|
||||||
cpu_percent = psutil.cpu_percent()
|
cpu_percent = psutil.cpu_percent(interval=0.1)
|
||||||
memory_info = psutil.virtual_memory()
|
memory_info = psutil.virtual_memory()
|
||||||
memory_percent = memory_info.percent
|
memory_percent = memory_info.percent
|
||||||
return {
|
return {
|
||||||
|