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

# Markdown 语法

> 使用标准 Markdown 编写文本、标题与样式

## 标题

通常用于章节标题。

```md theme={null}
## Titles
```

### 子标题

通常用于小节标题。

```md theme={null}
### Subtitles
```

<Tip>
  每个 **标题** 和 **子标题** 都会生成一个锚点（anchor），并显示在右侧目录（table of contents）中。
</Tip>

## 文本格式

我们支持大多数 Markdown 文本格式。只需要在文本两侧添加 `**`、`_` 或 `~` 即可。

| 样式  | 写法                | 效果                |
| --- | ----------------- | ----------------- |
| 加粗  | `**bold**`        | **bold**          |
| 斜体  | `_italic_`        | *italic*          |
| 删除线 | `~strikethrough~` | ~~strikethrough~~ |

这些格式可以组合使用。例如写 `**_bold and italic_**` 会得到 ***bold and italic*** 的效果。

上标/下标需要使用 HTML 标签：在文本两侧加上 `<sup>` 或 `<sub>`。

| 文本大小        | 写法                       | 效果                     |
| ----------- | ------------------------ | ---------------------- |
| Superscript | `<sup>superscript</sup>` | <sup>superscript</sup> |
| Subscript   | `<sub>subscript</sub>`   | <sub>subscript</sub>   |

## 链接到页面

你可以用 `[]()` 创建链接。例如写 `[link to google](https://google.com)` 会渲染为 [link to google](https://google.com)。

链接到你自己文档站点内的页面时，建议使用站点根路径（root-relative）。也就是包含完整的文件夹路径。例如：`[链接到代码块](/usage-guide/writing-content/code)` 会链接到本项目的「代码块」页面。

相对路径链接（如 `[link to text](../text)`）通常会更慢，因为系统不容易对其进行同等优化。

## 引用块（Blockquote）

### 单行

要创建引用块，在段落前添加 `>` 即可。

> Dorothy followed her through many of the beautiful rooms in her castle.

```md theme={null}
> Dorothy followed her through many of the beautiful rooms in her castle.
```

### 多行

> Dorothy followed her through many of the beautiful rooms in her castle.
>
> The Witch bade her clean the pots and kettles and sweep the floor and keep the fire fed with wood.

```md theme={null}
> Dorothy followed her through many of the beautiful rooms in her castle.
>
> The Witch bade her clean the pots and kettles and sweep the floor and keep the fire fed with wood.
```

### LaTeX

Mintlify 通过 `Latex` 组件支持 [LaTeX](https://www.latex-project.org)。

<Latex>8 x (vk x H1 - H2) = (0,1)</Latex>

```md theme={null}
<Latex>8 x (vk x H1 - H2) = (0,1)</Latex>
```
