markdown的基本使用

关于markdown的简介博主在这里不再赘述啦,如果想了解更多,可以看看下列的链接。

创始人 John Gruber 的 Markdown 语法说明

Markdown 中文版语法说明

下面举一些简单的例子

标题

markdown有六级标题 ,# +文字,#号越少字号越小,#号后面记得加空格哦。

    # 一级标题
    ## 二级标题
    ### 三级标题
    #### 四级标题
    ##### 五级标题
    ###### 六级标题

效果

一级标题

二级标题

三级标题

四级标题

五级标题
六级标题

文本样式

    (带“*”星号的文本样式,在原版Markdown标准中不存在,但在其大部分衍生标准中被添加)
    链接 :[Title](URL)
    加粗 :**Bold**
    斜体字 :*Italics*
    *删除线 :~~text~~
    *高亮 :==text==
    段落 : 段落之间空一行
    换行符 : 一行结束时输入两个空格
    列表 :* 添加星号成为一个新的列表项。
    引用 :> 引用内容
    内嵌代码 : `alert('Hello World');`
    画水平线 (HR) :--------

图片与链接

插入链接与插入图片的语法很像,区别在一个 !号

![样式](https://raw.githubusercontent.com/sirlh/photo/master/yangshi.jpg)
[我的博客](http://luheng.online/)

样式

我的博客

代码框

如果需要在文章里优雅的引用代码框,在 Markdown 下实现也非常简单,只需要前后分别用三个 ` 符号把中间的代码包裹起来.

表格

markdown表格的用法或许是最复杂的地方了,不过看起来很形象吧

    | 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

相关链接

MarkDown的基本使用
为什么作家应该用 Markdown 保存自己的文稿

你可能感兴趣的:(markdown的基本使用)