This is a test post to verify that markdown-based blog posts are working correctly.

It Works!

If you can read this, the markdown blog post pipeline is functioning end-to-end:

  • gray-matter parsed the frontmatter above
  • The content was read from content/blog/test-post.md
  • It was serialized via next-mdx-remote and rendered at /articles/test-post

Code Example

// Just checking that code blocks render
const message = "Hello from a markdown blog post!";
console.log(message);