Lady
test
Johan Sebastian Luna
· 24 April 2026 · 2 min readHere’s a rich mix of Markdown elements you can use to test formatting, rendering, and edge cases:
🧪 Markdown Test Suite
Headings
H1 Heading
H2 Heading
H3 Heading
H4 Heading
H5 Heading
H6 Heading
Text Formatting
Bold text
Italic text
Bold & Italic
Strikethrough
Inline code
This is a blockquote
Nested blockquote
Lists
Unordered List
-
Item 1
-
Item 2
- Nested Item 2a
- Nested Item 2b
-
Item 3
Ordered List
-
First item
-
Second item
- Sub-item
- Sub-item
-
Third item
Links
Images
Code Blocks
JavaScript
function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet("Luna"));
Python
def greet(name):
return f"Hello, {name}!"
print(greet("Luna"))
Tables
| Name | Age | Role |
|---|---|---|
| Luna | 23 | Admin |
| Alex | 30 | Tutor |
| Sam | 19 | Student |
Horizontal Rule
Checkboxes
- Completed task
- Incomplete task
- Another task
Emoji
😀 😎 🚀 🔥 💡
HTML Support (if enabled)
Escaping Characters
This should not be italic
This is not a heading
Nested Elements
Nested Heading in Blockquote
List inside quote
- Sub item
console.log("Code inside quote");
Footnotes
Here is a statement with a footnote.1
Task List with Code
- Write code
- Test code
- Deploy
npm install
npm run build
npm start
Definition List (if supported)
Term 1 : Definition 1
Term 2 : Definition 2
Math (if supported)
Inline: ( E = mc^2 )
Block: $$ \int_0^1 x^2 dx = \frac{1}{3} $$
If you want, I can generate extreme edge-case markdown (for stress testing parsers) or tailor this for your collaborative notebook system.
Footnotes
-
This is the footnote content. ↩