Skip to main content

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
  • Strikethrough
  • Inline code
  • Blockquote text


Lists

Unordered List

  • Item 1
    • Subitem 1a
    • Subitem 1b
  • Item 2

Ordered List

  1. First
  2. Second
    1. Subsecond 1
    2. Subsecond 2
  3. Third

Task Lists

  • Completed Task
  • Incomplete Task
  • Another Task


Images

Placeholder Image

Inline image: Tiny


Code Blocks

JavaScript

function greet(name) {
console.log(`Hello, ${name}!`);
}
greet("World");