Markdown reference
Reference:
BlockQuotes
Single line quote
> This is quote
This is quote
Multiline Quote
> This is quote
>
> This is quote
This is quote
This is quote
Table in blockquote
> | Header | Title |
>| --- | ----------- |
>| Paragraph1 | Text |
>| Paragraph 2| Text |
>| Paragraph3 | Text |
>| Paragraph 4 | Text |
Header Title Paragraph1 Text Paragraph 2 Text Paragraph3 Text Paragraph 4 Text
Table
| Syntax | Description |
| --- | ----------- |
| Header | Title |
| Paragraph | Text |
Output
| Syntax | Description |
|---|---|
| Header | Title |
| Paragraph | Text |
Table Alignment
| Syntax | Description | Test Text |
| :--- | :----: | ---: |
| Header | Title | Here's this |
| Paragraph | Text | And more |
Output
| Syntax | Description | Test Text |
|---|---|---|
| Header | Title | Here's this |
| Paragraph | Text | And more |
Create a Markdown file at docs/hello.md:
docs/hello.md
# Hello
This is my **first Docusaurus document**!
A new document is now available at http://localhost:3000/docs/hello.
Configure the Sidebar
Docusaurus automatically creates a sidebar from the docs folder.
Add metadata to customize the sidebar label and position:
docs/hello.md
---
sidebar_label: 'Hi!'
sidebar_position: 3
---
# Hello
This is my **first Docusaurus document**!
It is also possible to create your sidebar explicitly in sidebars.js:
sidebars.js
module.exports = {
tutorialSidebar: [
'intro',
'hello',
{
type: 'category',
label: 'Tutorial',
items: ['tutorial-basics/create-a-document'],
},
],
};