MarkDowm的优点
- 纯文本,所以兼容性极强,可以用所有文本编辑器打开。
- 让你专注于文字而不是排版。
- 格式转换方便,Markdown 的文本你可以轻松转换为 html、电子书等。
- Markdown 的标记语法有极好的可读性。
标题
-
一级标题
-
二级标题
-
三级标题
-
四级标题
-
五级标题
-
六级标题
Markdown 支持两种标题的语法,类 Setext 和类 atx 形式。
类 Setext 形式是用底线的形式,利用 = (最高阶标题)和 - (第二阶标题),例如:
This is an H1
This is an H2
> This is an H1
> =============
>
> This is an H2
> -------------
强调
Markdown 使用星号(*
)和底线(_
)作为标记强调字词的符号,被 (*
)或_
包围的字词会被转成用 <em>
标签包围,用两个*
或_
包起来的话,则会被转成<strong>
,例如
single asterisks
single underscores
double asterisks
double underscores
*single asterisks*
_single underscores_
**double asterisks**
__double underscores__
链接
[链接](http://www.baidu.com)
图片链接
imageThis is an example link.
This is an example link. 加了title属性的链接
![](http://img06.tooopen.com/images/20160916/tooopen_sy_178974421733.jpg)
This is an [example link](http://example.com/).
This is an [example link](http://example.com/ "With a Title"). 加了title属性的链接
参考形式的链接让你可以为链接定一个名称,之后你可以在文件的其他地方定义该链接的内容:
I get 10 times more traffic from Google than from
Yahoo or MSN.
引用
引用的段落文字显示
** 两个星号中间放文字是斜体
**** 四个星号中间放文字是粗体
斜体
粗体
*斜体*
**粗体**
代码引用
``中间的是单行代码
``` ````中间的是多行代码
hello word
`hello word`
<div>
多行代码
</div>
表格
| 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参考手册:https://www.appinn.com/markdown/
lifeColder的markdown笔记:https://www.jianshu.com/p/564bdf3a9462 ps:整理的非常详细
网友评论