win上我用markdownpad
標題
#一級標題
##二級標題
###三級標題
####四級標題
#####五級標題
######六級標題
一級標題
二級標題
三級標題
四級標題
五級標題
六級標題
表格
| Tables | Are | Cool |
| ------------- |:-------------:| -----:|
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |
Tables | Are | Cool |
---|---|---|
col 3 is | right-aligned | $1600 |
col 2 is | centered | $12 |
zebra stripes | are neat | $1 |
列表
- 橘子
- 香蕉
- 蘋果
橘子
香蕉
-
蘋果
1. 首先 2. 其次 3. 再次 4. 最后
- 首先
- 其次
- 再次
- 最后
引用
> 一盞燈, 一片昏黃; 一簡書, 一杯淡茶。 守著那一份淡定, 品讀屬于自己的寂寞。 保持淡定, 才能欣賞到最美麗的風景! 保持淡定, 人生從此不再寂寞。
一盞燈, 一片昏黃; 一簡書, 一杯淡茶。 守著那一份淡定, 品讀屬于自己的寂寞。 保持淡定, 才能欣賞到最美麗的風景! 保持淡定, 人生從此不再寂寞。
代碼塊
1個Tab或4個空格,如果是列表,則要2個Tab或8個空格
/// <summary>
/// 選取文件
/// </summary>
/// <param name="filter"></param>
/// <returns></returns>
public static string GetFileNameDialog(string filter = "txt|*.txt|xml files(*.xml)|*.xml|All files|*.*")
{
var ofd = new OpenFileDialog();
ofd.Filter = filter;
ofd.ShowDialog();
return ofd.FileName;
}
小代碼
比如這里代碼`var of = new OpenFileDialog();`就是小塊的代碼
比如這里代碼var of = new OpenFileDialog();
就是小塊的代碼
斜體
*你問* 我愛 你有 多深
你問 我愛 你有 多深
粗體
**我愛**你有 幾分
我愛你有 幾分
中劃線(不正規)
~~這個已完成~~
這個已完成
鏈接
[百度一下](http://www.baidu.com)
圖片

參考式
I get 10 times more traffic from [Google] [1] than from
[Yahoo] [2] or [MSN] [3].
[1]: http://google.com/ "Google"
[2]: http://search.yahoo.com/ "Yahoo Search"
[3]: http://search.msn.com/ "MSN Search"
I get 10 times more traffic from Google than from
Yahoo or MSN.
更多參考[Markdown語法說明][1]
[1]:http://wowubuntu.com/markdown/ "Markdown"
更多參考Markdown語法說明
1:http://wowubuntu.com/markdown/ "Markdown"