This is a Full Feature Test Post

2025-07-06

Welcome to the Test Post

This post is a complete showcase of what you can include in a Markdown/MDX blog post using Next.js and next-mdx-remote.


✍️ Paragraphs and Styling

You can write italic, bold, or even combine both styles. Line breaks need double spaces at the end. Horizontal rule below:


🔗 Links

Go to Next.js Docs


📋 Lists

Unordered list

  • Markdown
  • JSX
  • Styling
  • Plugins

Ordered list

  1. Read the file
  2. Parse with gray-matter
  3. Compile with MDX
  4. Render

💻 Code Block

JavaScript Example

function greet(name) {
  return `Hello, ${name}!`;
}

console.log(greet("Charan"));