Markdown语法

2015-09-30  本文已影响0人  Panda003

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)

百度一下

图片

![](https://img.haomeiwen.com/i665144/4a91119dd205341c.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

参考式

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"

上一篇下一篇

猜你喜欢

热点阅读