test page
Heading 1: Main Title
Welcome to the Markdown Formatting Test! This document tests all major Markdown elements.
Heading 2: Subsection
Here's a paragraph with italic, bold, bold italic, and ~~strikethrough~~ text.
Heading 3: Smaller Section
Lists are important in Markdown. Here are examples:
Unordered List
- Item 1
- Sub-item 1
- Sub-item 2
- Item 2
- Item 3
Ordered List
- First item
- Second item
- Third item
Links & Images
Here's a link to OpenAI.
And here's an image:

Blockquote
"The only limit to our realization of tomorrow is our doubts of today."
ā Franklin D. Roosevelt
Code
Inline code: console.log("Hello, Markdown!")
Block of code:
function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet("World"));
Tables
| Syntax | Description | Example | |-------------|-------------|------------| | Header 1 | Header 2 | Header 3 | | Paragraph | Text | More Text |
Horizontal Rule
Embedding HTML
You can also embed HTML for custom formatting:
Nested Elements
Blockquote with a nested list:
- Nested Item 1
- Nested Item 2
# Nested code block print("Hello from inside a blockquote!")
Math (if supported)
Inline math: $E = mc^2$
Block math: $$ \int_{a}^{b} x^2 dx $$
Footnotes
Here's a sentence with a footnote.[^1]
[^1]: This is the footnote content.
Admonitions (if supported)
Note: This is an example of an admonition.
It highlights important information.
That's it! If your blog supports these elements, it should render beautifully. š
### Instructions
1. Copy the above content into a file named `test.md`.
2. Add the file to your `posts` directory.
3. Open the post in your blog and verify the rendering of all elements.
Let me know if adjustments are needed!