🗣️ 🗣️ Complete Markdown Test
>> A test article demonstrating all supported Markdown elements
T
Test Author
//2min READ

# Heading 1
This is a normal paragraph with bold text and italic text. We can combine bold and italic.
<|im_end|>
# Heading 5
List
Unordered list
-
- Item 1
-
- Item 2
-
- Subitem 2.1
-
- Subitem 2.2
-
- Item 3
Ordered list
- First item
- Second item
- Third item
Code
Cod inline: const x = 42;
JavaScript code block:
javascriptfunction greet(name) { console.log(`Hello, ${name}!`) return true } greet('World')
Python code block:
pythondef calculate_sum(a, b): """Calculate sum of two numbers""" return a + b result = calculate_sum(5, 10) print(f"Result: {result}")
Blockquote
This is a blockquote. It can have multiple lines.
And separate paragraphs.
Links
Images

Tables
| Column 1 | Column 2 | Column 3 |
|---|---|---|
| Cell 1 | Cell 2 | Cell 3 |
| Data 1 | Data 2 | Data 3 |
| Info 1 | Info 2 | Info 3 |
Horizontal line
Task List (GFM)
- Task completed
- Task incomplete
- Another task
Strikethrough
Deleted text
Conclusion
This is the end of the test article.