Currently selected: HTML Test Page
Press ? for keyboard shortcuts

Markdown Test Page

· 2 min read
Title
Markdown Test Page
Date
2024-02-16

This page demonstrates various Markdown features supported by the blog.

Text Formatting

Italic text and more italic Bold text and more bold Bold and italic and more bold and italic Strikethrough text

Lists

Unordered Lists

  • Item 1
  • Item 2
    • Nested item 2.1
    • Nested item 2.2
  • Item 3

Ordered Lists

  1. First item
  2. Second item
    1. Nested item 2.1
    2. Nested item 2.2
  3. Third item

Links and Images

External link Internal link

Alt text for image

Code

Inline code example

javascript
// Code block with syntax highlighting
function example() {
  const message = "Hello, World!";
  console.log(message);
}

Blockquotes

Single line blockquote

Multiline blockquote with multiple paragraphs

Nested blockquotes

Tables

Header 1Header 2Header 3
Cell 1Cell 2Cell 3
Cell 4Cell 5Cell 6

Task Lists

  • Completed task
  • Incomplete task
  • Another completed task
    • Nested incomplete task
    • Nested completed task

Footnotes

Here's a sentence with a footnote1.

Horizontal Rules




Extended Features

Mermaid Diagrams

mermaid

Math Equations

Inline equation: $E = mc^2$

Block equation: $$ \frac{-b \pm \sqrt{b^2 - 4ac}}{2a} $$

Custom Container

:::note This is a custom note container :::

:::warning This is a custom warning container :::

Footnotes

  1. This is the footnote content.