> For the complete documentation index, see [llms.txt](https://huongdan.aichatbot.com.vn/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://huongdan.aichatbot.com.vn/aichatbot.com.vn/markdown.md).

# 5. Hướng dẫn sử dụng Markdown

#### 1. **Tiêu đề**

Dùng dấu `#` để tạo tiêu đề. Càng nhiều dấu `#`, tiêu đề càng nhỏ.

```markdown
# Tiêu đề chính
## Tiêu đề phụ
### Tiêu đề cấp 3
```

***

#### 2. **Văn bản và liên kết**

Bạn chỉ cần gõ văn bản bình thường, và dùng cú pháp sau để chèn liên kết:

```markdown
[Liên kết](https://aichatbot.com.vn)
```

✅ Kết quả:\
[Liên kết](https://aichatbot.com.vn)

***

#### 3. **Danh sách gạch đầu dòng**

Sử dụng dấu `-`, `*` hoặc `+` để tạo danh sách không thứ tự:

```markdown
- Gạch đầu dòng 1
- Gạch đầu dòng 2
- Gạch đầu dòng 3
```

✅ Kết quả:

* Gạch đầu dòng 1
* Gạch đầu dòng 2
* Gạch đầu dòng 3

***

#### 4. **Chèn hình ảnh**

Cú pháp:

```markdown
![Tên ảnh](URL_của_ảnh)
```

Ví dụ:

```markdown
![Hình ảnh](https://aichatbot.com.vn/wp-content/uploads/robot.png)
```

✅ Kết quả:\
![Hình ảnh](https://aichatbot.com.vn/wp-content/uploads/robot.png)

***

#### 5. **Chèn âm thanh** (Markdown không hỗ trợ trực tiếp, nhưng có thể chèn liên kết)

```markdown
[Âm thanh](https://aichatbot.com.vn/vi-du.mp3)
```

✅ Kết quả:\
[Âm thanh](https://aichatbot.com.vn/vi-du.mp3)

***

#### 6. **Chèn video (YouTube)**

Markdown cũng không hiển thị video trực tiếp, nhưng bạn có thể chèn liên kết:

```markdown
[Video](https://www.youtube.com/watch?v=5XnSYa7cDeY)
```

✅ Kết quả:\
[Video](https://www.youtube.com/watch?v=5XnSYa7cDeY)

***

### 📋 Ví dụ đầy đủ:

```markdown
# Tiêu đề chính
Nội dung văn bản
[Liên kết](https://aichatbot.com.vn)
## Tiêu đề phụ
- Gạch đầu dòng 1
- Gạch đầu dòng 2
- Gạch đầu dòng 3
![Hình ảnh](https://aichatbot.com.vn/wp-content/uploads/robot.png)
[Âm thanh](https://aichatbot.com.vn/vi-du.mp3)
[Video](https://www.youtube.com/watch?v=5XnSYa7cDeY)
Biểu diễn danh sách:
- Gạch đầu dòng 1
- Gạch đầu dòng 2
- Gạch đầu dòng 3
```

Zalo hỗ trợ: 0983082334


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://huongdan.aichatbot.com.vn/aichatbot.com.vn/markdown.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
