Markdown Test Suite
A complete Markdown testing document for Markdown β HTML converters.
Table of Contents
Headings
H1
H2
H3
H4
H5
H6
Text Formatting
Normal text.
Bold
Italic
Bold + Italic
Strikethrough
Underline (HTML)
Highlighted
Inline Code
Quote
Nested Quote
Horizontal Rule
Lists
Unordered
- Apple
- Banana
- Orange
- Small
- Medium
- Large
Ordered
- First
- Second
- Third
Mixed
- Item
- Child
- Child Child
- Child
Task Lists
- Completed
- Another
- Pending
- Testing
Links
Inline:
Auto Link:
Email:
Images
Normal Image
Image with title
HTML Image
Video
HTML Video
Embedded YouTube
Audio
Tables
| Name | Age | Country |
|---|---|---|
| John | 20 | USA |
| Sarah | 25 | Canada |
| Ali | 30 | Egypt |
Complex Table
| Left | Center | Right |
|---|---|---|
| A | B | C |
| D | E | F |
| G | H | I |
Code
Inline
Use npm install
C++
#include <iostream>
int main() {
std::cout << "Hello";
}
Python
def hello():
print("Hello World")
JavaScript
const app = () => {
console.log("Hello");
};
Bash
npm install
npm run dev
git status
JSON
{
"name": "Markdown",
"version": 1
}
YAML
name: Test
version: 1
author: John
HTML
<div class="card">Hello</div>
CSS
body {
background: #111;
}
HTML
HTML Card
This is embedded HTML.
Details
Click to Expand
Hidden Content
- Item 1
- Item 2
Emoji
π π π β€οΈ π
:smile:
Keyboard
Press Ctrl + C
Footnote
Markdown Footnote.[^1]
[^1]: This is a footnote.
Definition List
Markdown
: A lightweight markup language.
HTML
: HyperText Markup Language.
Escaping
*Not Bold*
# Not Heading
`Code`
Subscript / Superscript
H2O
x2
Abbreviation
The HTML specification.
*[HTML]: Hyper Text Markup Language
Math
Inline:
$E = mc^2$
Block:
$$
\int_a^b x^2 dx
$$
Mermaid
Sequence Diagram
Flowchart
Blockquote
Level 1
Level 2
Level 3
Nested List
- A
- B
- C
- D
- C
- B
Mixed Content
Project Card
GymFlow
Tech Stack
- Python
- SQLite
- CustomTkinter
Repository:
Image:
print("GymFlow")
| Feature | Status |
|---|---|
| Members | β |
| Plans | β |
| Payments | π§ |
Anchor Test
Jump to:
GitHub Alerts
NOTEThis is a note.
TIPHelpful information.
IMPORTANTImportant information.
WARNINGWarning message.
CAUTIONDangerous action.
HTML Form
SVG
Collapsible HTML
Always Open
Content Here
Unicode
γγγ«γ‘γ―
Ω Ψ±ΨΨ¨Ψ§
ΠΡΠΈΠ²Π΅Ρ
δ½ ε₯½
πβ€οΈπ
End
Everything above is intentionally included to stress-test a Markdown renderer.