1. 程式人生 > >markdown語法(github flavor)

markdown語法(github flavor)

mit 無序列表 con comm enter pos hub strong cond

1. 標題

# 一級標題

## 二級標題

。。。

###### 六級標題

2. 文本樣式

樣式 語法 舉例 效果
加粗 ** **或者__ __ **This is bold text** This is bold text
斜體 * * 或者 _ _ *This text is italicized* This text is italicized
刪除線 ~~ ~~ ~~This was mistaken text~~ This was mistaken text
加粗和斜體 ** ** 和 _ _ **This text is _extremely_ important** This text is extremely important

3. 文本引用

>

4. 代碼引用

單行:` `

多行:``` ```

5. 鏈接

[文本](url)

6.列表

無序列表: -

有序列表: 1.

嵌套列表:

- First list item

- Second nested list item

7.任務列表

- [x] Finish my changes
- [ ] Push my commits to GitHub
- [ ] Open a pull request [x]表示任務完成

markdown語法(github flavor)