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
- First item
- Second item
- Nested item 2.1
- Nested item 2.2
- Third item
Links and Images
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 1 | Header 2 | Header 3 |
---|---|---|
Cell 1 | Cell 2 | Cell 3 |
Cell 4 | Cell 5 | Cell 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
-
This is the footnote content. ↩