> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mem.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Formatting Content

Mem uses Markdown for formatting content via the API.

### Styling

```markdown theme={null}
**Bold**
_Italic_
~~Strikethrough~~
```

### Headings

```markdown theme={null}
# Heading 1
## Heading 2
### Heading 3
```

### Lists

```markdown theme={null}
- Unordered List Item 1
- Unordered List Item 2
  - Unordered List Item 2.1
  - Unordered List Item 2.2
- Unordered List Item 3

1. Ordered List Item 1
2. Ordered List Item 2
3. Ordered List Item 3

- [ ] Task List Item 1
- [x] Task List Item 2
- [ ] Task List Item 3
```

### Links

```markdown theme={null}
[Link Text](https://www.mem.ai)
```

### Images

```markdown theme={null}
![Alt Text](https://www.mem.ai/logo.png)
```

### Linking to Notes

```markdown theme={null}
[Link Text](mem://notes/01991079-7a38-718d-a05c-466f2a08e4b0)
```

### Quotes

```markdown theme={null}
> This is a blockquote
```

### Code

```markdown theme={null}
`console.log("Hello, world!");`
```

### Line Breaks

```markdown theme={null}
<br />
```

### Tables

```markdown theme={null}
| Column 1 | Column 2 | Column 3 |
|----------|----------|----------|
| Row 1    | Row 1    | Row 1    |
| Row 2    | Row 2    | Row 2    |
| Row 3    | Row 3    | Row 3    |
```
