Format Text
MDX supports all standard Markdown formatting plus JSX extensions.
Basic Formatting
**Bold text** for emphasis
_Italic text_ for nuance
~~Strikethrough~~ for corrections
`inline code` for code referencesHeadings
Use # symbols to create heading hierarchy:
# Heading 1
## Heading 2
### Heading 3
#### Heading 4Lists
Unordered Lists
- First item
- Second item
- Nested item
- Another nested item
- Third itemOrdered Lists
1. First step
2. Second step
3. Third stepBlockquotes
> This is a blockquote. Use them to highlight important
> information or quotes.Tables
| Feature | Supported |
| ------- | --------- |
| MDX | ✅ |
| JSX | ✅ |
| LaTeX | ✅ |