Markdown Features Test
This post demonstrates the various markdown features supported by our blog system.
Headers
Level 3 Header
Level 4 Header
Level 5 Header
Text Formatting
Bold text and italic text and bold italic text.
You can also use inline code
and strikethrough.
Lists
Unordered List
- Item 1
- Item 2
- Nested item 2.1
- Nested item 2.2
- Item 3
Ordered List
- First item
- Second item
- Nested item 2.1
- Nested item 2.2
- Third item
Links and Images
Here's a link to our homepage.
Code Blocks
JavaScript
function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet("Ask Ape"));
Python
def fibonacci(n):
if n <= 1:
return n
return fibonacci(n-1) + fibonacci(n-2)
print(fibonacci(10))
Blockquotes
This is a blockquote. It can span multiple lines and is great for highlighting important information or quotes from other sources.
β Ask Ape Team
Tables
Feature | Supported | Notes |
---|---|---|
Headers | β | H1-H6 |
Lists | β | Ordered & Unordered |
Code | β | Inline & Blocks |
Links | β | Internal & External |
Horizontal Rule
That's all for now! This should give you a good idea of what our markdown parser can handle.