# Markdown 連結

> Markdown 裡怎麼加連結：行內、參照式、以及直接的網址。

## 行內連結

把要顯示的文字放進[方括號]，網址放進(圓括號)，就這麼簡單。

```markdown
[Markdown for AI](https://markdownforai.org)
```

## 參照式連結

用一個標籤把網址定義一次，再重複用這個標籤。長段落更好讀。

```markdown
See [our guide][g] for more.

[g]: https://markdownforai.org
```

## 裸連結

把裸網址用角括號包起來，就能點擊了。

```markdown
<https://markdownforai.org>
```

:::tip
餵給 AI 時，用能說明內容的連結文字，別用「點這裡」。這樣模型才知道連結是關於什麼的。
:::
