標題 (6 levels)
# 號、空格
Markdown
| # h1 | 
文字樣式
| 文字樣式 | Markdown 語法 | 效果 | 
|---|---|---|
| 粗體 (bold) | **example** | example | 
| 斜體 (italic) | *example* | example | 
| 粗斜體 (bold-italic) | ***example*** | example | 
| 底線 (underline) | <u>example</u> | example | 
| 刪除線 (srikethrough) | ~~example~~ | |
| 文字顏色 (font color) | <font color=red>example</font> | example | 
| 非標題的文字大小 (font size - not heading) | <font size=5>example</font> | example | 
| 文字顏色+大小 (font color + size) | <font color=red size=5>example</font> | example | 
引用 (Blockquotes)
 >號、空格
Markdown
| > 這裡是引用內容 | 
【↓↓↓↓ 效果 ↓↓↓↓】
這裡是引用內容
引用引用引用引用引用
這裡是引用內容
引用中的引用
列表 (Lists)
Ordered Lists
Markdown
| 1. First item | 
【↓↓↓↓ 效果 ↓↓↓↓】
- First item
- Second item
- Third item- Indented item
- Indented item
 
- Fourth item
Unordered Lists
前面用 + 、 - 、 * 符號也可以。
Markdown
| + First item | 
【↓↓↓↓ 效果 ↓↓↓↓】
- First item
- Second item
- Third item- Indented item
- Indented item- in-Indented item
 
 
- Fourth item
短程式 (Code)
用前後一點(tab 上面、數字1 左面那粒制)包著,如下:
【↓↓↓↓ 效果 ↓↓↓↓】i am code
程式碼 (Code Blocks)
用前後三點包著,上面那行寫 code language,如下:
【↓↓↓↓ 效果 ↓↓↓↓】
html
| <p style="color:red;"> | 
分隔線 hr
 三個 dash ---
【↓↓↓↓ 效果 ↓↓↓↓】
我的設定就是下面這條黃色線。
超連結 (Hyperlink)
Markdown
| Here is the link of [Google](https://www.google.com) | 
【↓↓↓↓ 效果 ↓↓↓↓】
Here is the link of Google
展示純網址 https://www.google.com
圖片 (Image)

Markdown
|  | 
【↓↓↓↓ 效果 ↓↓↓↓】
表格 (Table)
不對齊也可以,寬度自動生成的。
靠左 :---
置中 :----:
靠右 ---:
Markdown
| | Syntax | Description | | 
| Syntax | Description | 
|---|---|
| Header | Title | 
| Paragraph | Text | 
| Syntax | Description | 
|---|---|
| Header | Title | 
| Paragraph | Text | 
| Syntax | Description | Test Text | 
|---|---|---|
| 靠左 | 置中 | 靠右 | 
| Paragraph | Text | And more | 
在 table 內使用 | 符號注意
由於 pipe 符號和 markdown 的 table 語法有衝突,
如要在markdown 的 table 內顯示pipe 符號 | ,要輸入作 \|。
Markdown
| | 例 | | 
| 例 | 
|---|
| | | 
代辦事項 (Task Lists)
Markdown
| - [ ] To do item 1 | 
- To do item 1
- To do item 2
- To do item 3
