← 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
- First item
- Second item
- Sub-item 1
- Sub-item 2
- 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:
Block math:
Horizontal Rules
That's the end of this test document.