mirror of
https://github.com/halo-dev/docs.git
synced 2025-10-21 02:04:01 +00:00
refactor: documentation structure (#310)
重构文档结构,将开发者文档与使用文档分开。 <img width="641" alt="image" src="https://github.com/halo-dev/docs/assets/21301288/baed360c-997b-443c-9a8e-cc53e268b8f4"> <img width="766" alt="image" src="https://github.com/halo-dev/docs/assets/21301288/08326aab-d474-4075-bdc9-c628a39ba715"> Note: 此改动不造成死链。 ```release-note None ```
This commit is contained in:
@@ -78,12 +78,16 @@ const config = {
|
|||||||
},
|
},
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
href: "https://halo.run",
|
type: "docSidebar",
|
||||||
label: "官网",
|
position: "left",
|
||||||
|
sidebarId: "tutorial",
|
||||||
|
label: "使用指南",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
href: "https://bbs.halo.run",
|
type: "docSidebar",
|
||||||
label: "论坛",
|
position: "left",
|
||||||
|
sidebarId: "developer",
|
||||||
|
label: "开发者指南",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: "docsVersionDropdown",
|
type: "docsVersionDropdown",
|
||||||
@@ -106,6 +110,16 @@ const config = {
|
|||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
href: "https://halo.run",
|
||||||
|
label: "官网",
|
||||||
|
position: "right",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
href: "https://bbs.halo.run",
|
||||||
|
label: "论坛",
|
||||||
|
position: "right",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
href: "https://github.com/halo-dev/halo",
|
href: "https://github.com/halo-dev/halo",
|
||||||
label: "GitHub",
|
label: "GitHub",
|
||||||
|
22
sidebars.js
22
sidebars.js
@@ -14,7 +14,7 @@ module.exports = {
|
|||||||
// By default, Docusaurus generates a sidebar from the docs folder structure
|
// By default, Docusaurus generates a sidebar from the docs folder structure
|
||||||
// tutorialSidebar: [{type: 'autogenerated', dirName: '.'}],
|
// tutorialSidebar: [{type: 'autogenerated', dirName: '.'}],
|
||||||
|
|
||||||
tutorialSidebar: [
|
tutorial: [
|
||||||
"intro",
|
"intro",
|
||||||
{
|
{
|
||||||
type: "category",
|
type: "category",
|
||||||
@@ -81,11 +81,16 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: "category",
|
type: "category",
|
||||||
label: "开发者指南",
|
label: "参与贡献",
|
||||||
link: {
|
link: {
|
||||||
type: "generated-index",
|
type: "generated-index",
|
||||||
},
|
},
|
||||||
items: [
|
items: ["contribution/issue", "contribution/pr", "contribution/sponsor"],
|
||||||
|
},
|
||||||
|
"about",
|
||||||
|
],
|
||||||
|
|
||||||
|
developer: [
|
||||||
{
|
{
|
||||||
type: "category",
|
type: "category",
|
||||||
label: "系统开发",
|
label: "系统开发",
|
||||||
@@ -323,15 +328,4 @@ module.exports = {
|
|||||||
// href: "https://api.halo.run",
|
// href: "https://api.halo.run",
|
||||||
// },
|
// },
|
||||||
],
|
],
|
||||||
},
|
|
||||||
{
|
|
||||||
type: "category",
|
|
||||||
label: "参与贡献",
|
|
||||||
link: {
|
|
||||||
type: "generated-index",
|
|
||||||
},
|
|
||||||
items: ["contribution/issue", "contribution/pr", "contribution/sponsor"],
|
|
||||||
},
|
|
||||||
"about",
|
|
||||||
],
|
|
||||||
};
|
};
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"tutorialSidebar": [
|
"tutorial": [
|
||||||
"intro",
|
"intro",
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
@@ -22,9 +22,7 @@
|
|||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
"label": "其他指南",
|
"label": "其他指南",
|
||||||
"items": [
|
"items": ["getting-started/install/other/nginxproxymanager"]
|
||||||
"getting-started/install/other/nginxproxymanager"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@@ -52,11 +50,15 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
"label": "开发者指南",
|
"label": "参与贡献",
|
||||||
"link": {
|
"link": {
|
||||||
"type": "generated-index"
|
"type": "generated-index"
|
||||||
},
|
},
|
||||||
"items": [
|
"items": ["contribution/issue", "contribution/pr"]
|
||||||
|
},
|
||||||
|
"about"
|
||||||
|
],
|
||||||
|
"developer": [
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
"label": "系统开发",
|
"label": "系统开发",
|
||||||
@@ -135,15 +137,4 @@
|
|||||||
},
|
},
|
||||||
"developer-guide/form-schema"
|
"developer-guide/form-schema"
|
||||||
]
|
]
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "category",
|
|
||||||
"label": "参与贡献",
|
|
||||||
"link": {
|
|
||||||
"type": "generated-index"
|
|
||||||
},
|
|
||||||
"items": ["contribution/issue", "contribution/pr"]
|
|
||||||
},
|
|
||||||
"about"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"tutorialSidebar": [
|
"tutorial": [
|
||||||
"intro",
|
"intro",
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
@@ -53,11 +53,15 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
"label": "开发者指南",
|
"label": "参与贡献",
|
||||||
"link": {
|
"link": {
|
||||||
"type": "generated-index"
|
"type": "generated-index"
|
||||||
},
|
},
|
||||||
"items": [
|
"items": ["contribution/issue", "contribution/pr"]
|
||||||
|
},
|
||||||
|
"about"
|
||||||
|
],
|
||||||
|
"developer": [
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
"label": "系统开发",
|
"label": "系统开发",
|
||||||
@@ -76,9 +80,7 @@
|
|||||||
"link": {
|
"link": {
|
||||||
"type": "generated-index"
|
"type": "generated-index"
|
||||||
},
|
},
|
||||||
"items": [
|
"items": ["developer-guide/plugin/prepare"]
|
||||||
"developer-guide/plugin/prepare"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
@@ -141,18 +143,4 @@
|
|||||||
"developer-guide/form-schema",
|
"developer-guide/form-schema",
|
||||||
"developer-guide/annotations-form"
|
"developer-guide/annotations-form"
|
||||||
]
|
]
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "category",
|
|
||||||
"label": "参与贡献",
|
|
||||||
"link": {
|
|
||||||
"type": "generated-index"
|
|
||||||
},
|
|
||||||
"items": [
|
|
||||||
"contribution/issue",
|
|
||||||
"contribution/pr"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"about"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"tutorialSidebar": [
|
"tutorial": [
|
||||||
"intro",
|
"intro",
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
@@ -60,11 +60,15 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
"label": "开发者指南",
|
"label": "参与贡献",
|
||||||
"link": {
|
"link": {
|
||||||
"type": "generated-index"
|
"type": "generated-index"
|
||||||
},
|
},
|
||||||
"items": [
|
"items": ["contribution/issue", "contribution/pr", "contribution/sponsor"]
|
||||||
|
},
|
||||||
|
"about"
|
||||||
|
],
|
||||||
|
"developer": [
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
"label": "系统开发",
|
"label": "系统开发",
|
||||||
@@ -110,9 +114,7 @@
|
|||||||
"type": "doc",
|
"type": "doc",
|
||||||
"id": "developer-guide/plugin/examples/todolist"
|
"id": "developer-guide/plugin/examples/todolist"
|
||||||
},
|
},
|
||||||
"items": [
|
"items": ["developer-guide/plugin/examples/todolist"]
|
||||||
"developer-guide/plugin/examples/todolist"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
@@ -191,19 +193,4 @@
|
|||||||
"developer-guide/form-schema",
|
"developer-guide/form-schema",
|
||||||
"developer-guide/annotations-form"
|
"developer-guide/annotations-form"
|
||||||
]
|
]
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "category",
|
|
||||||
"label": "参与贡献",
|
|
||||||
"link": {
|
|
||||||
"type": "generated-index"
|
|
||||||
},
|
|
||||||
"items": [
|
|
||||||
"contribution/issue",
|
|
||||||
"contribution/pr",
|
|
||||||
"contribution/sponsor"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"about"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"tutorialSidebar": [
|
"tutorial": [
|
||||||
"intro",
|
"intro",
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
@@ -62,11 +62,15 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
"label": "开发者指南",
|
"label": "参与贡献",
|
||||||
"link": {
|
"link": {
|
||||||
"type": "generated-index"
|
"type": "generated-index"
|
||||||
},
|
},
|
||||||
"items": [
|
"items": ["contribution/issue", "contribution/pr", "contribution/sponsor"]
|
||||||
|
},
|
||||||
|
"about"
|
||||||
|
],
|
||||||
|
"developer": [
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
"label": "系统开发",
|
"label": "系统开发",
|
||||||
@@ -112,9 +116,7 @@
|
|||||||
"type": "doc",
|
"type": "doc",
|
||||||
"id": "developer-guide/plugin/examples/todolist"
|
"id": "developer-guide/plugin/examples/todolist"
|
||||||
},
|
},
|
||||||
"items": [
|
"items": ["developer-guide/plugin/examples/todolist"]
|
||||||
"developer-guide/plugin/examples/todolist"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
@@ -194,19 +196,4 @@
|
|||||||
"developer-guide/form-schema",
|
"developer-guide/form-schema",
|
||||||
"developer-guide/annotations-form"
|
"developer-guide/annotations-form"
|
||||||
]
|
]
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "category",
|
|
||||||
"label": "参与贡献",
|
|
||||||
"link": {
|
|
||||||
"type": "generated-index"
|
|
||||||
},
|
|
||||||
"items": [
|
|
||||||
"contribution/issue",
|
|
||||||
"contribution/pr",
|
|
||||||
"contribution/sponsor"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"about"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"tutorialSidebar": [
|
"tutorial": [
|
||||||
"intro",
|
"intro",
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
@@ -63,11 +63,15 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
"label": "开发者指南",
|
"label": "参与贡献",
|
||||||
"link": {
|
"link": {
|
||||||
"type": "generated-index"
|
"type": "generated-index"
|
||||||
},
|
},
|
||||||
"items": [
|
"items": ["contribution/issue", "contribution/pr", "contribution/sponsor"]
|
||||||
|
},
|
||||||
|
"about"
|
||||||
|
],
|
||||||
|
"developer": [
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
"label": "系统开发",
|
"label": "系统开发",
|
||||||
@@ -231,9 +235,7 @@
|
|||||||
"link": {
|
"link": {
|
||||||
"type": "generated-index"
|
"type": "generated-index"
|
||||||
},
|
},
|
||||||
"items": [
|
"items": ["developer-guide/plugin/examples/todolist"]
|
||||||
"developer-guide/plugin/examples/todolist"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@@ -299,19 +301,4 @@
|
|||||||
"developer-guide/form-schema",
|
"developer-guide/form-schema",
|
||||||
"developer-guide/annotations-form"
|
"developer-guide/annotations-form"
|
||||||
]
|
]
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "category",
|
|
||||||
"label": "参与贡献",
|
|
||||||
"link": {
|
|
||||||
"type": "generated-index"
|
|
||||||
},
|
|
||||||
"items": [
|
|
||||||
"contribution/issue",
|
|
||||||
"contribution/pr",
|
|
||||||
"contribution/sponsor"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"about"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"tutorialSidebar": [
|
"tutorial": [
|
||||||
"intro",
|
"intro",
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
@@ -53,11 +53,15 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
"label": "开发者指南",
|
"label": "参与贡献",
|
||||||
"link": {
|
"link": {
|
||||||
"type": "generated-index"
|
"type": "generated-index"
|
||||||
},
|
},
|
||||||
"items": [
|
"items": ["contribution/issue", "contribution/pr"]
|
||||||
|
},
|
||||||
|
"about"
|
||||||
|
],
|
||||||
|
"developer": [
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
"label": "系统开发",
|
"label": "系统开发",
|
||||||
@@ -182,15 +186,4 @@
|
|||||||
"developer-guide/form-schema",
|
"developer-guide/form-schema",
|
||||||
"developer-guide/annotations-form"
|
"developer-guide/annotations-form"
|
||||||
]
|
]
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "category",
|
|
||||||
"label": "参与贡献",
|
|
||||||
"link": {
|
|
||||||
"type": "generated-index"
|
|
||||||
},
|
|
||||||
"items": ["contribution/issue", "contribution/pr"]
|
|
||||||
},
|
|
||||||
"about"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"tutorialSidebar": [
|
"tutorial": [
|
||||||
"intro",
|
"intro",
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
@@ -54,11 +54,15 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
"label": "开发者指南",
|
"label": "参与贡献",
|
||||||
"link": {
|
"link": {
|
||||||
"type": "generated-index"
|
"type": "generated-index"
|
||||||
},
|
},
|
||||||
"items": [
|
"items": ["contribution/issue", "contribution/pr"]
|
||||||
|
},
|
||||||
|
"about"
|
||||||
|
],
|
||||||
|
"developer": [
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
"label": "系统开发",
|
"label": "系统开发",
|
||||||
@@ -104,9 +108,7 @@
|
|||||||
"type": "doc",
|
"type": "doc",
|
||||||
"id": "developer-guide/plugin/examples/todolist"
|
"id": "developer-guide/plugin/examples/todolist"
|
||||||
},
|
},
|
||||||
"items": [
|
"items": ["developer-guide/plugin/examples/todolist"]
|
||||||
"developer-guide/plugin/examples/todolist"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
@@ -185,18 +187,4 @@
|
|||||||
"developer-guide/form-schema",
|
"developer-guide/form-schema",
|
||||||
"developer-guide/annotations-form"
|
"developer-guide/annotations-form"
|
||||||
]
|
]
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "category",
|
|
||||||
"label": "参与贡献",
|
|
||||||
"link": {
|
|
||||||
"type": "generated-index"
|
|
||||||
},
|
|
||||||
"items": [
|
|
||||||
"contribution/issue",
|
|
||||||
"contribution/pr"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"about"
|
|
||||||
]
|
|
||||||
}
|
}
|
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"tutorialSidebar": [
|
"tutorial": [
|
||||||
"intro",
|
"intro",
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
@@ -54,11 +54,15 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
"label": "开发者指南",
|
"label": "参与贡献",
|
||||||
"link": {
|
"link": {
|
||||||
"type": "generated-index"
|
"type": "generated-index"
|
||||||
},
|
},
|
||||||
"items": [
|
"items": ["contribution/issue", "contribution/pr"]
|
||||||
|
},
|
||||||
|
"about"
|
||||||
|
],
|
||||||
|
"developer": [
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
"label": "系统开发",
|
"label": "系统开发",
|
||||||
@@ -104,9 +108,7 @@
|
|||||||
"type": "doc",
|
"type": "doc",
|
||||||
"id": "developer-guide/plugin/examples/todolist"
|
"id": "developer-guide/plugin/examples/todolist"
|
||||||
},
|
},
|
||||||
"items": [
|
"items": ["developer-guide/plugin/examples/todolist"]
|
||||||
"developer-guide/plugin/examples/todolist"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
@@ -185,18 +187,4 @@
|
|||||||
"developer-guide/form-schema",
|
"developer-guide/form-schema",
|
||||||
"developer-guide/annotations-form"
|
"developer-guide/annotations-form"
|
||||||
]
|
]
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "category",
|
|
||||||
"label": "参与贡献",
|
|
||||||
"link": {
|
|
||||||
"type": "generated-index"
|
|
||||||
},
|
|
||||||
"items": [
|
|
||||||
"contribution/issue",
|
|
||||||
"contribution/pr"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"about"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"tutorialSidebar": [
|
"tutorial": [
|
||||||
"intro",
|
"intro",
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
@@ -54,11 +54,15 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
"label": "开发者指南",
|
"label": "参与贡献",
|
||||||
"link": {
|
"link": {
|
||||||
"type": "generated-index"
|
"type": "generated-index"
|
||||||
},
|
},
|
||||||
"items": [
|
"items": ["contribution/issue", "contribution/pr"]
|
||||||
|
},
|
||||||
|
"about"
|
||||||
|
],
|
||||||
|
"developer": [
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
"label": "系统开发",
|
"label": "系统开发",
|
||||||
@@ -104,9 +108,7 @@
|
|||||||
"type": "doc",
|
"type": "doc",
|
||||||
"id": "developer-guide/plugin/examples/todolist"
|
"id": "developer-guide/plugin/examples/todolist"
|
||||||
},
|
},
|
||||||
"items": [
|
"items": ["developer-guide/plugin/examples/todolist"]
|
||||||
"developer-guide/plugin/examples/todolist"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
@@ -185,18 +187,4 @@
|
|||||||
"developer-guide/form-schema",
|
"developer-guide/form-schema",
|
||||||
"developer-guide/annotations-form"
|
"developer-guide/annotations-form"
|
||||||
]
|
]
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "category",
|
|
||||||
"label": "参与贡献",
|
|
||||||
"link": {
|
|
||||||
"type": "generated-index"
|
|
||||||
},
|
|
||||||
"items": [
|
|
||||||
"contribution/issue",
|
|
||||||
"contribution/pr"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"about"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"tutorialSidebar": [
|
"tutorial": [
|
||||||
"intro",
|
"intro",
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
@@ -58,11 +58,15 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
"label": "开发者指南",
|
"label": "参与贡献",
|
||||||
"link": {
|
"link": {
|
||||||
"type": "generated-index"
|
"type": "generated-index"
|
||||||
},
|
},
|
||||||
"items": [
|
"items": ["contribution/issue", "contribution/pr"]
|
||||||
|
},
|
||||||
|
"about"
|
||||||
|
],
|
||||||
|
"developer": [
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
"label": "系统开发",
|
"label": "系统开发",
|
||||||
@@ -187,15 +191,4 @@
|
|||||||
"developer-guide/form-schema",
|
"developer-guide/form-schema",
|
||||||
"developer-guide/annotations-form"
|
"developer-guide/annotations-form"
|
||||||
]
|
]
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "category",
|
|
||||||
"label": "参与贡献",
|
|
||||||
"link": {
|
|
||||||
"type": "generated-index"
|
|
||||||
},
|
|
||||||
"items": ["contribution/issue", "contribution/pr"]
|
|
||||||
},
|
|
||||||
"about"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"tutorialSidebar": [
|
"tutorial": [
|
||||||
"intro",
|
"intro",
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
@@ -58,11 +58,15 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
"label": "开发者指南",
|
"label": "参与贡献",
|
||||||
"link": {
|
"link": {
|
||||||
"type": "generated-index"
|
"type": "generated-index"
|
||||||
},
|
},
|
||||||
"items": [
|
"items": ["contribution/issue", "contribution/pr"]
|
||||||
|
},
|
||||||
|
"about"
|
||||||
|
],
|
||||||
|
"developer": [
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
"label": "系统开发",
|
"label": "系统开发",
|
||||||
@@ -108,9 +112,7 @@
|
|||||||
"type": "doc",
|
"type": "doc",
|
||||||
"id": "developer-guide/plugin/examples/todolist"
|
"id": "developer-guide/plugin/examples/todolist"
|
||||||
},
|
},
|
||||||
"items": [
|
"items": ["developer-guide/plugin/examples/todolist"]
|
||||||
"developer-guide/plugin/examples/todolist"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
@@ -189,18 +191,4 @@
|
|||||||
"developer-guide/form-schema",
|
"developer-guide/form-schema",
|
||||||
"developer-guide/annotations-form"
|
"developer-guide/annotations-form"
|
||||||
]
|
]
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "category",
|
|
||||||
"label": "参与贡献",
|
|
||||||
"link": {
|
|
||||||
"type": "generated-index"
|
|
||||||
},
|
|
||||||
"items": [
|
|
||||||
"contribution/issue",
|
|
||||||
"contribution/pr"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"about"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"tutorialSidebar": [
|
"tutorial": [
|
||||||
"intro",
|
"intro",
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
@@ -59,11 +59,15 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
"label": "开发者指南",
|
"label": "参与贡献",
|
||||||
"link": {
|
"link": {
|
||||||
"type": "generated-index"
|
"type": "generated-index"
|
||||||
},
|
},
|
||||||
"items": [
|
"items": ["contribution/issue", "contribution/pr"]
|
||||||
|
},
|
||||||
|
"about"
|
||||||
|
],
|
||||||
|
"developer": [
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
"label": "系统开发",
|
"label": "系统开发",
|
||||||
@@ -109,9 +113,7 @@
|
|||||||
"type": "doc",
|
"type": "doc",
|
||||||
"id": "developer-guide/plugin/examples/todolist"
|
"id": "developer-guide/plugin/examples/todolist"
|
||||||
},
|
},
|
||||||
"items": [
|
"items": ["developer-guide/plugin/examples/todolist"]
|
||||||
"developer-guide/plugin/examples/todolist"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
@@ -190,18 +192,4 @@
|
|||||||
"developer-guide/form-schema",
|
"developer-guide/form-schema",
|
||||||
"developer-guide/annotations-form"
|
"developer-guide/annotations-form"
|
||||||
]
|
]
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "category",
|
|
||||||
"label": "参与贡献",
|
|
||||||
"link": {
|
|
||||||
"type": "generated-index"
|
|
||||||
},
|
|
||||||
"items": [
|
|
||||||
"contribution/issue",
|
|
||||||
"contribution/pr"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"about"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"tutorialSidebar": [
|
"tutorial": [
|
||||||
"intro",
|
"intro",
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
@@ -60,11 +60,15 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
"label": "开发者指南",
|
"label": "参与贡献",
|
||||||
"link": {
|
"link": {
|
||||||
"type": "generated-index"
|
"type": "generated-index"
|
||||||
},
|
},
|
||||||
"items": [
|
"items": ["contribution/issue", "contribution/pr"]
|
||||||
|
},
|
||||||
|
"about"
|
||||||
|
],
|
||||||
|
"developer": [
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
"label": "系统开发",
|
"label": "系统开发",
|
||||||
@@ -110,9 +114,7 @@
|
|||||||
"type": "doc",
|
"type": "doc",
|
||||||
"id": "developer-guide/plugin/examples/todolist"
|
"id": "developer-guide/plugin/examples/todolist"
|
||||||
},
|
},
|
||||||
"items": [
|
"items": ["developer-guide/plugin/examples/todolist"]
|
||||||
"developer-guide/plugin/examples/todolist"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "category",
|
"type": "category",
|
||||||
@@ -191,18 +193,4 @@
|
|||||||
"developer-guide/form-schema",
|
"developer-guide/form-schema",
|
||||||
"developer-guide/annotations-form"
|
"developer-guide/annotations-form"
|
||||||
]
|
]
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "category",
|
|
||||||
"label": "参与贡献",
|
|
||||||
"link": {
|
|
||||||
"type": "generated-index"
|
|
||||||
},
|
|
||||||
"items": [
|
|
||||||
"contribution/issue",
|
|
||||||
"contribution/pr"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"about"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user