Example Docs

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 references

Headings

Use # symbols to create heading hierarchy:

# Heading 1

## Heading 2

### Heading 3

#### Heading 4

Lists

Unordered Lists

- First item
- Second item
  - Nested item
  - Another nested item
- Third item

Ordered Lists

1. First step
2. Second step
3. Third step

Blockquotes

> This is a blockquote. Use them to highlight important
> information or quotes.

Tables

| Feature | Supported |
| ------- | --------- |
| MDX     | ✅        |
| JSX     | ✅        |
| LaTeX   | ✅        |