# 语法指南

以下是 Markdown 语法的概述，你可以在 GitHub.com 或你自己的文本文件中的任何位置使用它。

#### 标题

```
# 这是一个 <h1> 标签
## 这是一个 <h2> 标签
###### 这是一个 <h6> 标签
```

#### 强调

```
*这行字将会是斜体*
_这行字将会是斜体_

**这行字将会是粗体**
__这行字将会是粗体__

_你**可以**组合它们_
```

#### 列表

**无序**

```
* 项目 1
* 项目 2
  * 项目 2a
  * 项目 2b
```

**有序**

```
1. 项目 1
1. 项目 2
1. 项目 3
   1. 项目 3a
   1. 项目 3b
```

#### 图片

```
![GitHub Logo](/images/logo.png)
格式：![Alt Text](url)
```

#### 链接

```
http://github.com - automatic!
[GitHub](http://github.com)
```

#### 引用

```
如 Kanye West 所说：

> 我们活在未来
> 那么当下即是过去
```

#### 行内代码

```
我认为你这里应该使用 `<addr>` 元素代替。
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://github.highlight.ink/mastering-markdown/syntax-guide.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
