MDX Test Post

2026-03-08

This is a MDX post. It renders just like Markdown but can also include React components.

Regular Markdown works fine

  • Lists work
  • Bold and italic work
  • inline code works

Code blocks work too

const hello = () => {
  console.log("Hello from MDX");
};

This is what makes MDX special

Unlike .md, this file could embed a React component inline like this:

// Example — if you had a <Chart /> component you could do:
// <Chart data={[1, 2, 3]} />

For now this post just confirms MDX files build and render alongside your Obsidian .md posts without conflict.