>> _DOC://PUBLIC_ACCESS

🗣️ 🗣️ Complete Markdown Test

>> A test article demonstrating all supported Markdown elements

T

Test Author

//2min READ
🗣️ 🗣️ Complete Markdown Test

# 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

    1. Item 1
    1. Item 2
      • Subitem 2.1
      • Subitem 2.2
    1. Item 3

Ordered list

  1. First item
  2. Second item
  3. Third item

Code

Cod inline: const x = 42;

JavaScript code block:

javascript
function greet(name) {
  console.log(`Hello, ${name}!`)
  return true
}

greet('World')

Python code block:

python
def 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.

Internal Link

Link extern

Images

Alt text for image

Tables

Column 1Column 2Column 3
Cell 1Cell 2Cell 3
Data 1Data 2Data 3
Info 1Info 2Info 3

Horizontal line


Task List (GFM)

  • Task completed
  • Task incomplete
  • Another task

Strikethrough

Deleted text

Conclusion

This is the end of the test article.