MDX Comprehensive Guide
1. Title (H1)
2. Heading (H2)
3. Subheading (H3)
Here is a paragraph with bold text, italic text, and strikethrough text.
You can also use inline code or show a link to the MDX Website.
Lists
- Unordered List Item A
- Unordered List Item B
- Sub-item 1
- Sub-item 2
- Ordered List Item 1
- Ordered List Item 2
Blockquotes
"MDX allows you to use JSX in your markdown content." — MDX Documentation
Images
External Image:

Internal Image (hosted on the site):
Code Blocks
// A syntax-highlighted code block
function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet("World"));