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
  • Strikethrough
  • Inline code

Lists

Unordered List

  • Item 1
  • Item 2
    • Nested item 2.1
    • Nested item 2.2
  • Item 3

Ordered List

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

Links and Images

Link to example.com

You can include images in your markdown:

Example Image

Or use external images:

Vercel Avatar

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

FeatureSupportedNotes
HeadingsAll 6 levels
ListsOrdered and unordered
CodeInline and blocks
TablesGitHub Flavored Markdown

Horizontal Rule


Task Lists (GitHub Flavored Markdown)

  • Completed task
  • Incomplete task
  • Another completed task

Emoji

😄 🚀 ❤️

Enjoy exploring all these markdown features!