Markdown 語法
建立時間:2023/08/31
紀錄比較少用、特殊的語法
📌 表格雙行 + 小icon + 強調文字
| ⚠️ Warning |
|---|
Warning Warning you will enter !!! |
| ❌ Error |
|---|
Error This is the error message. |
| ℹ️ Information |
|---|
Information Detailed information content. |
| ✅ Success |
|---|
Success Information returned successfully. |
| ⚠️ Warning |
|----------------------------------------|
| `Warning` Warning you will enter !!! |
| ❌ Error |
|------------------------------------|
| `Error` This is the error message. |
| ℹ️ Information |
|---------------------------------------------|
| `Information` Detailed information content. |
| ✅ Success |
|----------------------------------------------|
| `Success` Information returned successfully. |📌 Icon
https://github.com/markdown-it/markdown-it-emoji/blob/master/lib/data/full.json
👻 💯 ✋ ✂️ 👉 🔵 📌 👏 👶 🟪 🌿 👦 🍧 🍰 🕕
:ghost: :100: :hand: :scissors: :point_right: :large_blue_circle: :pushpin:
:clap: :baby: :purple_square: :herb: :boy: :shaved_ice: :cake: :clock6:📌 區塊
TIP
Markdown Content TIP
INFO
Markdown Content info
DANGER
Markdown Content danger
:::tip
Markdown Content `TIP`
:::
:::info
Markdown Content `info`
:::
:::danger
Markdown Content `danger`
:::📌 表格
| Name | Color | price |
|---|---|---|
| apple | Red | $20 |
| banana | yellow | $10 |
| lemon | green | $30 |
| Name | Color | price |
| ----- | ---- | ----- |
| apple | Red | $20 |
| banana | yellow | $10 |
| lemon | green | $30 |📌 粗體、底線、標記
**粗體**
++底線++
==標記==📌 縮排
- 清單一
- 清單二
- 清單二子項目
- 標號一
- 標號二
- 標號二子項目📌 分隔線
---