mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-19 12:07:00 +02:00
* feat: add getting started doc at classic inital templates
* fix: improve the contents of getting started page
* fix: fix slug routing
* fix: rename gettingStarted to getting-started and re-adjust the content
* feat: add markdown-features docs
* feat: add a page on how to create a simple document
* feat: add a page on how to create pages
* feat: add create a post doc
* feat: add thank you page with whats next
* feat : update sidebar.js
* feat : add introduction content
* feat : add self hosting content
* feat : add GitHub pages content
* fix : remove automatically deploying with github actions content
* feat : add deploying to netlify
* feat : add Translate your site
* add : Manage versions
* fix : formatted docs with prettier
* Revert "fix : formatted docs with prettier"
This reverts commit af8c0b48
* run prettier to init templates with fixes
* complete new init template
* rename manage-docs-versions
* change wording
* refresh config file
* rework init template homepage
* minor changes
Co-authored-by: Lisa Chandra <52909743+lisa761@users.noreply.github.com>
Co-authored-by: Javid <singularity.javid@gmail.com>
Co-authored-by: ShinteiMai <stevenhanselgo@gmail.com>
Co-authored-by: slorber <lorber.sebastien@gmail.com>
38 lines
777 B
Markdown
38 lines
777 B
Markdown
---
|
|
title: Create a Document
|
|
---
|
|
|
|
Documents are a **group of pages** connected through a **sidebar**, a **previous/next navigation** and **versioning**.
|
|
|
|
## Create a Document
|
|
|
|
Create a markdown file at `docs/my-doc.md`:
|
|
|
|
```mdx title="docs/hello.md"
|
|
---
|
|
title: Hello, World!
|
|
---
|
|
|
|
## Hello, World!
|
|
|
|
This is your first document in **Docusaurus**, Congratulations!
|
|
```
|
|
|
|
A new document is now available at `http://localhost:3000/docs/hello`.
|
|
|
|
## Add your document to the sidebar
|
|
|
|
Add `hello` to the `sidebars.js` file:
|
|
|
|
```diff title="sidebars.js"
|
|
module.exports = {
|
|
docs: [
|
|
{
|
|
type: 'category',
|
|
label: 'Docusaurus Tutorial',
|
|
- items: ['getting-started', 'create-a-doc', ...],
|
|
+ items: ['getting-started', 'create-a-doc', 'hello', ...],
|
|
},
|
|
],
|
|
};
|
|
```
|