No description available.
Invalid Date
---
title: "The Ultimate Markdown Demo"
date: "2025-06-01"
description: "A showcase of almost every Markdown feature you can use."
author: "ChatGPT"
tags:
- markdown
- demo
- tutorial
image: "/images/markdown-demo-hero.jpg"
Heading Level 1
Heading Level 2
Heading Level 3
Heading Level 4
Heading Level 5
Heading Level 6
Paragraphs and Line Breaks
This is a paragraph with bold text, italic text, and bold italic text.
This is a new paragraph separated by a blank line.
This line
breaks here with two spaces at the end.
Blockquotes
This is a blockquote.
Nested blockquote.
Even deeper nested blockquote.
Lists
Unordered List
- Item 1
- Item 2
- Nested item 2a
- Nested item 2b
- Item 3
Ordered List
- First item
- Second item
- Nested item 2a
- Nested item 2b
- Third item
Code
Inline code
Use the <code> tag.
Code block without language
console.log('Hello, World!');
Code block with language highlighting (JavaScript)
function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet('Markdown'));
Emphasis and Strikethrough
- Bold text
- Italic text
- Bold and italic
- ~~Strikethrough~~
Links
Images

Tables
| Syntax | Description | Test | | --------- | ----------- | ------------- | | Header | Title | Here's this | | Paragraph | Text | And more text |
Right aligned columns:
| Syntax | Description | Test | | --------: | ----------- | ------------: | | Header | Title | Here's this | | Paragraph | Text | And more text |
Horizontal Rules
Task Lists
- [x] Write the demo file
- [ ] Test the demo file
- [ ] Publish demo file
Footnotes
Here's a sentence with a footnote.[^1]
[^1]: This is the footnote explanation.
Definition List (if your parser supports it)
Term 1 : Definition 1
Term 2 : Definition 2
Emoji
I :heart: Markdown! 🎉🚀
HTML Support (works in most markdown renderers)
Block Math (if supported)
$$ E = mc^2 $$
Inline Math (if supported)
Euler's formula: $e^{i\pi} + 1 = 0$
Table of Contents (if supported)
- Heading Level 1
- Paragraphs and Line Breaks
- Blockquotes
- Lists
- Code
- Emphasis and Strikethrough
- Links
- Images
- Tables
- Horizontal Rules
- Task Lists
- Footnotes
- Definition List
- Emoji
- HTML Support
- Math
End of demo file.
---