forked from noctisynth/dicer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
30 changed files
with
1,661 additions
and
5,134 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,4 +8,7 @@ node_modules/ | |
test.py | ||
.idea | ||
*.bak | ||
*.log* | ||
*.log* | ||
|
||
docs/.vitepress/dist | ||
docs/.vitepress/cache |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
import { defineConfig } from 'vitepress' | ||
|
||
// https://vitepress.dev/reference/site-config | ||
export default defineConfig({ | ||
lang: 'zh-CN', | ||
title: "DicerGirl", | ||
description: "新一代跨平台开源 TRPG 骰娘框架", | ||
|
||
themeConfig: { | ||
// https://vitepress.dev/reference/default-theme-config | ||
nav: [ | ||
{ | ||
text: '概览', | ||
link: '/overview/', | ||
}, | ||
{ | ||
text: '开始', | ||
link: '/getting-started/', | ||
}, | ||
{ | ||
text: '指南', | ||
link: '/usage/', | ||
}, | ||
], | ||
|
||
sidebar: [ | ||
{ | ||
text: '概览', | ||
link: '/overview/', | ||
}, | ||
{ | ||
text: '开始', | ||
link: '/getting-started/', | ||
items: [ | ||
{ | ||
text: '安装', | ||
link: '/getting-started/installation.html', | ||
}, | ||
{ | ||
text: '部署', | ||
link: '/getting-started/deployment.html', | ||
}, | ||
{ | ||
text: '使用', | ||
link: '/getting-started/using-dicergirl.html', | ||
}, | ||
] | ||
}, | ||
{ | ||
text: '指南', | ||
link: '/usage/', | ||
items: [ | ||
{ | ||
text: '指令', | ||
link: '/usage/commands/', | ||
items: [ | ||
{ | ||
text: '管理指令', | ||
link: '/usage/commands/manage.html', | ||
}, | ||
{ | ||
text: '内置指令', | ||
link: '/usage/commands/builtins.html', | ||
}, | ||
{ | ||
text: '插件指令', | ||
link: '/usage/commands/plugins.html', | ||
}, | ||
] | ||
}, | ||
] | ||
}, | ||
], | ||
|
||
docFooter: { | ||
prev: '上一页', | ||
next: '下一页' | ||
}, | ||
lightModeSwitchTitle: '切换到日光模式', | ||
darkModeSwitchTitle: '切换到黑暗模式', | ||
sidebarMenuLabel: '目录', | ||
returnToTopLabel: '返回顶部', | ||
outline: { | ||
label: "侧边栏" | ||
}, | ||
|
||
editLink: { | ||
pattern: 'https://github.com/noctisynth/dicer/edit/master/docs/:path', | ||
text: '编辑此页' | ||
}, | ||
|
||
socialLinks: [ | ||
{ icon: 'github', link: 'https://github.com/noctisynth/dicer/' } | ||
], | ||
|
||
footer: { | ||
message: 'Released under the <a href="https://github.com/noctisynth/dicer/blob/master/LICENSE">Apache-2.0 License</a>.', | ||
copyright: 'Copyright © 2011-present <a href="https://github.com/noctisynth/">Noctisynth, org</a>' | ||
} | ||
} | ||
}) |
6 changes: 4 additions & 2 deletions
6
docs/src/getting-started/deployment.md → docs/getting-started/deployment.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 4 additions & 2 deletions
6
docs/src/getting-started/installation.md → docs/getting-started/installation.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
--- | ||
prev: ./README.md | ||
next: ./deployment.md | ||
prev: | ||
link: ./README.md | ||
next: | ||
link: ./deployment.md | ||
--- | ||
# 安装 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
--- | ||
# https://vitepress.dev/reference/default-theme-home-page | ||
layout: home | ||
title: DicerGirl - 新一代跨平台 TRPG 骰娘框架 | ||
|
||
hero: | ||
name: "DicerGirl" | ||
text: | ||
tagline: "新一代跨平台开源 TRPG 骰娘框架" | ||
actions: | ||
- theme: brand | ||
text: 快速上手 | ||
link: /getting-started/ | ||
- theme: alt | ||
text: 项目概览 | ||
link: /overview/ | ||
|
||
features: | ||
- title: 高度自由 | ||
details: DicerGirl 是高度自由与高度可拓展的 | ||
- title: 模块系统 | ||
details: DicerGirl 模块遵循 Infini 标准,你可以自由的开发和增删模块 | ||
- title: 跨平台支持 | ||
details: 你可以在任何平台部署和使用 DicerGirl | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.