创建文档
文档是通过以下方式连接的 **页面组**
- 一个 **侧边栏**
- 上一个/下一个导航
- 版本控制
创建你的第一个文档
在 docs/hello.md
中创建一个 Markdown 文件
docs/hello.md
# Hello
This is my **first Docusaurus document**!
现在可以在 http://localhost:3000/docs/hello 访问新的文档。
配置侧边栏
Docusaurus 会自动 **从 docs
文件夹创建侧边栏**。
添加元数据以自定义侧边栏标签和位置
docs/hello.md
---
sidebar_label: 'Hi!'
sidebar_position: 3
---
# Hello
This is my **first Docusaurus document**!
你也可以在 sidebars.js
中显式创建侧边栏
sidebars.js
export default {
tutorialSidebar: [
'intro',
'hello',
{
type: 'category',
label: 'Tutorial',
items: ['tutorial-basics/create-a-document'],
},
],
};