# Format Text
URL: /docs/create-content/format-text
LLM index: /llms.txt
Description: Text formatting options in MDX documentation.

# Format Text

MDX supports all standard Markdown formatting plus JSX extensions.

## Basic Formatting

```markdown
**Bold text** for emphasis
_Italic text_ for nuance
~~Strikethrough~~ for corrections
`inline code` for code references
```

## Headings

Use `#` symbols to create heading hierarchy:

```markdown
# Heading 1

## Heading 2

### Heading 3

#### Heading 4
```

## Lists

### Unordered Lists

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

### Ordered Lists

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

## Blockquotes

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

## Tables

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