title: "MDX Test Page"

MDX Test Page

This is a test page to verify MDX rendering is working correctly.

Code Block Test

// This should have syntax highlighting
function hello() {
  console.log("Hello, MDX!");
  return "Hello, world!";
}

Table Test

| Feature | Status | Notes | | ------- | ------ | ----- | | Basic MDX | ✅ | Core functionality | | Syntax Highlighting | ✅ | Using rehype-highlight | | Auto-linked Headings | ✅ | Using rehype-autolink-headings | | GitHub-Flavored Markdown | ✅ | Using remark-gfm |

Component Test

You can import and use React components directly in MDX:

Highlighted text!

Footnote Test

Here's a sentence with a footnote[^1].

[^1]: This is the footnote content.