mirror of
https://github.com/mintlify/docs.git
synced 2026-09-14 13:35:46 +08:00
3dc3852b7a
* Improve SEO descriptions across 47 pages Curated descriptions from two bot-generated PRs (#3908, #3949), selecting the best approach for each page: - Added missing title and description frontmatter to 10 API reference pages - Benefit-focused descriptions for integration pages (not implementation-heavy) - Accurate REST-aligned titles for API endpoints (Export, List, Trigger, etc.) - Expanded short descriptions to 50–160 character range throughout Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * copyedit * Update custom-domain.mdx * Fix analytics API page titles to match spec summaries "Export" was inaccurate — spec uses "Get" for both endpoints. Also updated descriptions to use "Retrieve" for consistency. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
96 lines
2.3 KiB
Plaintext
96 lines
2.3 KiB
Plaintext
---
|
|
title: "Lists and tables"
|
|
description: "Format structured data with Markdown tables, ordered lists, unordered lists, and nested list structures."
|
|
keywords: ["ordered", "unordered", "Markdown tables", "table formatting"]
|
|
---
|
|
|
|
## Lists
|
|
|
|
Lists follow the official [Markdown syntax](https://www.markdownguide.org/basic-syntax/#lists-1).
|
|
|
|
### Ordered list
|
|
|
|
To create an ordered list, add numbers followed by a period before list items.
|
|
|
|
1. First item
|
|
2. Second item
|
|
3. Third item
|
|
4. Fourth item
|
|
|
|
```mdx
|
|
1. First item
|
|
2. Second item
|
|
3. Third item
|
|
4. Fourth item
|
|
```
|
|
|
|
### Unordered list
|
|
|
|
To create an unordered list, add dashes (`-`), asterisks (`*`), or plus signs (`+`) before list items.
|
|
|
|
- First item
|
|
- Second item
|
|
- Third item
|
|
- Fourth item
|
|
|
|
```mdx
|
|
- First item
|
|
- Second item
|
|
- Third item
|
|
- Fourth item
|
|
```
|
|
|
|
### Nested list
|
|
|
|
Indent list items to nest them.
|
|
|
|
- First item
|
|
- Second item
|
|
- Additional item
|
|
- Additional item
|
|
- Third item
|
|
|
|
```mdx
|
|
- First item
|
|
- Second item
|
|
- Additional item
|
|
- Additional item
|
|
- Third item
|
|
```
|
|
|
|
## Tables
|
|
|
|
Tables follow the official [Markdown syntax](https://www.markdownguide.org/extended-syntax/#tables).
|
|
|
|
To add a table, use three or more hyphens (`---`) to create each column's header, and use pipes (`|`) to separate each column. For compatibility, you should also add a pipe on either end of the row.
|
|
|
|
| Property | Description |
|
|
| -------- | ------------------------------------- |
|
|
| Name | Full name of user |
|
|
| Age | Reported age |
|
|
| Joined | Whether the user joined the community |
|
|
|
|
```mdx
|
|
| Property | Description |
|
|
| -------- | ------------------------------------- |
|
|
| Name | Full name of user |
|
|
| Age | Reported age |
|
|
| Joined | Whether the user joined the community |
|
|
```
|
|
|
|
### Column alignment
|
|
|
|
Use colons in the separator row to align column content:
|
|
|
|
| Left aligned | Center aligned | Right aligned |
|
|
| :----------- | :------------: | ------------: |
|
|
| Left | Center | Right |
|
|
| Text | Text | Text |
|
|
|
|
```mdx
|
|
| Left aligned | Center aligned | Right aligned |
|
|
| :----------- | :------------: | ------------: |
|
|
| Left | Center | Right |
|
|
| Text | Text | Text |
|
|
```
|