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
📋 Lists
Unordered list
- Markdown
- JSX
- Styling
- Plugins
Ordered list
- Read the file
- Parse with
gray-matter - Compile with MDX
- Render
💻 Code Block
JavaScript Example
function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet("Charan"));