markdown基本语法

标题

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

一级标题 二级标题 三级标题
四级标题 五级标题 六级标题 换行
第一行(两个空格+回车) 第二行

第一行
第二行
代码段
```// 这是代码段 ```//

这是代码段

区块引用
> 这里是区块引用

【markdown基本语法】这里是区块引用
> 这是区块引用1 >> 这是区块引用1-1

这是区块引用1
这是区块引用1-1
列表
- 这是无序列表 - 这是无序列表 - 这是无序列表 - 这是无序列表

  • 这是无序列表
    • 这是无序列表
  • 这是无序列表
    • 这是无序列表
1. 这是有序列表 1. 这是有序列表 1. 这是有序列表 1. 这是有序列表

  1. 这是有序列表
    1. 这是有序列表
  2. 这是有序列表
    1. 这是有序列表
分隔线
这是分隔线 ***

这是分隔线
表格
这是表格| 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
这是表格dog | bird | cat ----|------|---- foo | foo| foo bar | bar| bar baz | baz| baz

这是表格
dog bird cat
foo foo foo
bar bar bar
baz baz baz
链接
这是链接:[点我,google一下](https://www.google.com/)

这是链接: 点我,google一下
强调
*这是斜体* **这是强调** ***这是斜体强调***

这是斜体
这是强调
这是斜体强调
转义
转义字符: \

图片
![](test.png)

    推荐阅读