mirror of
https://github.com/mintlify/docs.git
synced 2026-09-14 13:35:46 +08:00
fbdd913d8e
* Add translation tracker for stale translations audit Generated-By: mintlify-agent * translations: add missing pages and update content for es, fr, zh Phase 1: Add translations for 4 new API analytics pages (feedback-by-page, searches, views, visitors) in es, fr, and zh. Phase 2: Update 3 pages with content changes: - agent/workflows: add "Disable a workflow" subsection - ai/skillmd: add 24-hour generation note - editor/publish: add AI PR title tip, reformat publishing workflows, promote "Publish your changes" heading from h3 to h2 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * update descriptions * translations * translations * translations * Delete TRANSLATION_TRACKER.md * translations * a * a * translations * translations * translations * translations * translations * translations * translations * translations * Update use-cases.mdx * translations * translations * Update ai-native.mdx * Update accordions.mdx * Update accordions.mdx * Update accordions.mdx * translations * translations * Update fonts.mdx * translations * translations: update SEO descriptions for es, fr, zh (150 pages) Update the description: frontmatter field across 150 pages × 3 languages to match the current English descriptions updated on 2026-03-31. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> --------- Co-authored-by: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> Co-authored-by: Ethan Palm <56270045+ethanpalm@users.noreply.github.com> Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
112 lines
2.4 KiB
Plaintext
112 lines
2.4 KiB
Plaintext
---
|
|
title: "列表与表格"
|
|
description: "使用 Markdown 表格、有序列表、无序列表、嵌套结构和任务列表复选框在文档中呈现结构化数据。"
|
|
keywords: ["有序列表", "无序列表", "Markdown 表格", "表格格式"]
|
|
---
|
|
|
|
<div id="lists">
|
|
## 列表
|
|
</div>
|
|
|
|
列表遵循官方的 [Markdown 语法](https://www.markdownguide.org/basic-syntax/#lists-1)。
|
|
|
|
<div id="ordered-list">
|
|
### 有序列表
|
|
</div>
|
|
|
|
要创建有序列表,请在每个列表项前加上数字和一个句点。
|
|
|
|
1. 第一项
|
|
2. 第二项
|
|
3. 第三项
|
|
4. 第四项
|
|
|
|
```mdx
|
|
1. 第一项
|
|
2. 第二项
|
|
3. 第三项
|
|
4. 第四项
|
|
```
|
|
|
|
|
|
<div id="unordered-list">
|
|
### 无序列表
|
|
</div>
|
|
|
|
要创建无序列表,在列表项前添加连字符(`-`)、星号(`*`)或加号(`+`)。
|
|
|
|
* 第一项
|
|
* 第二项
|
|
* 第三项
|
|
* 第四项
|
|
|
|
```mdx
|
|
- 第一项
|
|
- 第二项
|
|
- 第三项
|
|
- 第四项
|
|
```
|
|
|
|
|
|
<div id="nested-list">
|
|
### 嵌套列表
|
|
</div>
|
|
|
|
通过缩进列表项来创建嵌套。
|
|
|
|
* 第一项
|
|
* 第二项
|
|
* 附加项
|
|
* 附加项
|
|
* 第三项
|
|
|
|
```mdx
|
|
- 第一项
|
|
- 第二项
|
|
- 附加项
|
|
- 附加项
|
|
- 第三项
|
|
```
|
|
|
|
|
|
<div id="tables">
|
|
## 表格
|
|
</div>
|
|
|
|
表格遵循官方的 [Markdown 语法](https://www.markdownguide.org/extended-syntax/#tables)。
|
|
|
|
要添加表格,使用三个或更多连字符(`---`)来创建每一列的表头,并使用竖线(`|`)分隔每一列。为兼容起见,还应在每行的两端各添加一个竖线。
|
|
|
|
| 属性 | 说明 |
|
|
| -------- | -------------------------------------- |
|
|
| 名称 | 用户全名 |
|
|
| 年龄 | 用户填写的年龄 |
|
|
| 加入 | 该用户是否已加入社区 |
|
|
|
|
```mdx
|
|
| Property | 说明 |
|
|
| -------- | ------------------------------------- |
|
|
| Name | 用户全名 |
|
|
| Age | 年龄 |
|
|
| Joined | 用户是否已加入社区 |
|
|
```
|
|
|
|
|
|
<div id="column-alignment">
|
|
### 列对齐
|
|
</div>
|
|
|
|
在分隔行中使用冒号来设置列内容的对齐方式:
|
|
|
|
| 左对齐 | 居中对齐 | 右对齐 |
|
|
| :-- | :--: | --: |
|
|
| 左 | 中 | 右 |
|
|
| 文本 | 文本 | 文本 |
|
|
|
|
```mdx
|
|
| 左对齐 | 居中对齐 | 右对齐 |
|
|
| :----------- | :------------: | ------------: |
|
|
| 左对齐 | 居中对齐 | 右对齐 |
|
|
| 文本 | 文本 | 文本 |
|
|
```
|