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

Ordered List

  1. First item
  2. Second item
    1. Nested item 2a
    2. Nested item 2b
  3. 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


Links


Images

Markdown Logo

Local Image


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


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)


End of demo file.


---