概述
Markdown是一种轻量级的「标记语言」,它的目标是实现「易读易写」,他用简洁的语法代替排版,是我们专注于编写的内容。下面简要介绍一些Markdown的语法。
标题
在行首插入1到6个#,对应标题的1到6阶
# 这是 H1
## 这是H2
### 这是H3
结果如下:
可以在行尾加入#来闭合
引用
在每行加入>
> This is a blockquote with two paragraphs. Lorem ipsum dolor sit amet,
> consectetuer adipiscing elit. Aliquam hendrerit mi posuere lectus.
> Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus.
>
> Donec sit amet nisl. Aliquam semper ipsum sit amet velit. Suspendisse
> id sem consectetuer libero luctus adipiscing.
结果如下:
列表
无序列表使用星号、加号或减号来标记
* red
* blue
* green
- red
- blue
- green
+ red
+ blue
+ green
结果如下:
有序列表使用数字加一个英文句点
1. red
2. blude
3. blude
结果如下:
代码区快
行内代码区块使用 ` code `来标记,,区块代码用``标记。
`print(“hello world”)`
效果如下:
print(“hello world”)`
```
print("hello world")
print("hello world")
print("hello world")
```
效果如下:
print("hello world")
print("hello world")
print("hello world")
链接
对于普通链接: [显示的内容](链接地址)
对于图片: 
分割线
用星号、减号和底线,不能有文字
***
---
————
强调
使用星号(*)和底线(_)标记,一个表示斜体,两个表示加粗。
*single asterisks*
_single underscores_
**double asterisks**
__double underscores__
自动链接
<http://example.com/>
反斜杠
用反斜杠()来进行转义,对内容中包含有特殊意义的符号转义。
Markdown免费编辑器
- windows
- Markdownpad
- MarkPad
- Linux
- ReText
- Typora(推荐)
- Mac
- Mou
- 在线编辑器
- Markable.in
- Dillinger.io
- 浏览器插件
- MaDe(Chrome)
- Marxico (马克飞象)(chrome)(推荐)