Skip to main content

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

  1. First Item
  2. Second Item
    1. Nested Item 1
    2. Nested Item 2
  3. Third Item

Docusaurus

Google

Sample

Images

Docusaurus Logo

Code

Inline code: const x = 10;

Block code with syntax highlighting:

function hello() {
console.log("Hello, world!");
}
def hello():
print("Hello, world!")

Tables

Header 1Header 2Header 3
Left AlignedCenter AlignedRight Aligned
Item 1Item 2Item 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.