Example Page 1 – All Elements Showcase
This page demonstrates almost all Markdown elements supported in Docusaurus.
Headings
H1 Heading
H2 Heading
H3 Heading
H4 Heading
H5 Heading
H6 Heading
Text Styles
- Bold text
- Italic text
- Bold + Italic
StrikethroughInline code
-
Blockquote text
Lists
Unordered List
- Item 1
- Subitem 1a
- Subitem 1b
- Item 2
Ordered List
- First
- Second
- Subsecond 1
- Subsecond 2
- Third
Task Lists
- Completed Task
- Incomplete Task
- Another Task
Links
Images
Inline image:
Code Blocks
JavaScript
function greet(name) {
console.log(`Hello, ${name}!`);
}
greet("World");