← Back to home

Markdown Test

Markdown Test

This document includes all common Markdown features to test the rendering system.


Headings

H1 Heading

H2 Heading

H3 Heading

H4 Heading

H5 Heading
H6 Heading

Text Styling

  • Bold Text
  • Italic Text
  • Bold and Italic
  • Strikethrough
  • Inline code: console.log("Hello, World!")

Lists

Ordered List

  1. First item
  2. Second item
    1. Sub-item 1
    2. Sub-item 2
  3. Third item

Unordered List

  • Item 1
  • Item 2
    • Sub-item 1
    • Sub-item 2
  • Item 3

Links and Images


Blockquotes

"The only limit to our realization of tomorrow is our doubts of today."

  • Franklin D. Roosevelt

Code Blocks

JavaScript Example

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

Python Example

def greet(name):
    print(f"Hello, {name}!")
greet("World")

Tables

Syntax Description
Bold **text**
Italic _text_
Inline code `code`

Math

Inline math: E=mc2E = mc^2
Block math:

0exdx=1\int_0^\infty e^{-x} dx = 1

Horizontal Rules


That's the end of this test document.