Files
mintlify[bot] f8e015ff62 Improve SEO descriptions across 177 pages (#4993)
* Improve SEO metadata: update descriptions to 130-155 chars across 177 pages

Generated-By: mintlify-agent

* Apply suggestion from @ethanpalm

* Apply suggestions from code review

Co-authored-by: Ethan Palm <56270045+ethanpalm@users.noreply.github.com>

* Apply suggestions from code review

Co-authored-by: Ethan Palm <56270045+ethanpalm@users.noreply.github.com>

* 💅

---------

Co-authored-by: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com>
Co-authored-by: Ethan Palm <56270045+ethanpalm@users.noreply.github.com>
2026-03-31 16:12:58 -07:00

96 lines
2.4 KiB
Plaintext

---
title: "Lists and tables"
description: "Format structured data in your documentation with Markdown tables, ordered and unordered lists, nested structures, and task list checkboxes."
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 |
```