Markdown Features
This page demonstrates all standard Markdown features supported by Docusaurus.
Headers
H1 Header
H2 Header
H3 Header
H4 Header
H5 Header
H6 Header
Text Formatting
Bold Text
Italic Text
Bold and Italic
Strikethrough
Lists
Unordered List
- Item 1
- Item 2
- Sub-item 2.1
- Sub-item 2.2
- Item 3
Ordered List
- First Item
- Second Item
- Nested Item 1
- Nested Item 2
- Third Item
Links
Images
Code
Inline code: const x = 10;
Block code with syntax highlighting:
function hello() {
console.log("Hello, world!");
}
def hello():
print("Hello, world!")
Tables
| Header 1 | Header 2 | Header 3 |
|---|---|---|
| Left Aligned | Center Aligned | Right Aligned |
| Item 1 | Item 2 | Item 3 |
Blockquotes
This is a blockquote.
It can span multiple lines.
Horizontal Rules
Admonitions (Docusaurus specific)
note
This is a note.
tip
This is a tip.
info
This is info.
warning
This is a warning.
danger
This is danger.