Testing MDX Support in Our Blog

Testing MDX Support in Our Blog

July 10, 2025Texas AI Team

Testing MDX Support

This is a regular markdown paragraph. You can use bold and italic text as usual.

What is MDX?

MDX allows you to use JSX in your markdown content. This means you can import and use React components directly in your blog posts.

Here's a simple example of using JSX directly in Markdown:

Interactive Content Example

This is JSX embedded directly in the MDX content!

Regular Markdown Still Works

  • List item 1
  • List item 2
  • List item 3

This is a blockquote that works just like in regular Markdown.

Texas AI Logo

Code Blocks Still Work

function Greeting() {
  return <h3>Hello from a React component!</h3>
}

Why MDX is Powerful

MDX combines the simplicity of Markdown with the power of React components, making it perfect for technical blog posts. With MDX, you can:

  1. Add interactive demos
  2. Include data visualizations
  3. Embed custom UI components
  4. Create dynamic content

All while keeping the straightforward writing experience of Markdown.