Markdown Features Showcase
A demonstration of all the markdown features supported by next-md-blog
Jane Smith, John Doe1 min read213 words
markdownfeaturesshowcase
This post demonstrates all the markdown features supported by next-md-blog.
Headings
You can use different heading levels:
Heading 1
Heading 2
Heading 3
Heading 4
Text Formatting
- Bold text
- Italic text
- Bold and italic
StrikethroughInline code
Lists
Unordered List
- Item 1
- Item 2
- Nested item 2.1
- Nested item 2.2
- Item 3
Ordered List
- First item
- Second item
- Third item
Links and Images
You can include images in your markdown:

Or use external images:
Code Blocks
Here's a JavaScript example:
function greet(name) {
return \`Hello, \${name}!\`;
}
console.log(greet('World'));
Here's a TypeScript example:
interface User {
name: string;
age: number;
}
const user: User = {
name: 'John',
age: 30
};
Blockquotes
This is a blockquote. It can span multiple lines.
And include multiple paragraphs.
Tables
| Feature | Supported | Notes |
|---|---|---|
| Headings | ✅ | All 6 levels |
| Lists | ✅ | Ordered and unordered |
| Code | ✅ | Inline and blocks |
| Tables | ✅ | GitHub Flavored Markdown |
Horizontal Rule
Task Lists (GitHub Flavored Markdown)
- Completed task
- Incomplete task
- Another completed task
Emoji
😄 🚀 ❤️
Enjoy exploring all these markdown features!