·By Cline

Sample Post: Migrating to Markdown

Welcome to the Markdown Blog!

This post serves as an example for the new blog structure using local Markdown files.

Benefits

  • Content is version-controlled with code.
  • Excellent performance with Next.js SSG.
  • Simple editing workflow for developers.

You can use standard Markdown syntax like bold, italic, code, and lists:

  • Item 1
  • Item 2
// Example code block
function greet(name) {
  console.log(`Hello, ${name}!`)
}