Markdown学习
2019-12-12 本文已影响0人
_n_n_
1. 多级标题
# 一级标题
## 二级标题
### 三级标题
#### 四级标题
##### 五级标题
###### 六级标题
一级标题
二级标题
三级标题
四级标题
五级标题
六级标题
2. 无序列表
- 无序列表1
- 无序列表1
- 无序列表1
- 无序列表1
* 无序列表2
* 无序列表2
- 无序列表2
- 无序列表2
+ 无序列表3
+ 无序列表3
- 无序列表3
- 无序列表3
3. 有序列表
1. 有序列表1
2. 有序列表1
- 有序列表1
- 有序列表1
1. 有序列表2
1. 有序列表2
- 有序列表2
- 有序列表2
4. 引用
> ***引用***
>> *嵌套引用*
引用
嵌套引用
5. 插入图片
![图片链接1](https://img.haomeiwen.com/i8580440/fc5c2b86f14eac70.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
![图片链接2][1]
[1]: http://latex.codecogs.com/gif.latex?\prod%20\(n_{i}\)+1
图片链接1
6. 超链接
[文字链接1](http://www.jianshu.com/ "简书")
[文字链接2][a]
[a]: http://www.jianshu.com/
"简书"
<http://www.jianshu.com/>
<address@example.com>
7. 字体
**粗体**
__粗体__
*斜体*
_斜体_
粗体
粗体
斜体
斜体
8. 表格
**粗体**
__粗体__
*斜体*
_斜体_
水果 | 价格 | 数量 |
---|---|---|
香蕉 | $1 | 5 |
苹果 | $1 | 6 |
草莓 | $1 | 7 |
9. 分隔线
***
* * *
---
- - -
___
_ _ _
10. 行内代码
`print("Hello, World")`
print("Hello, World")
11. 多行代码
```python3
print("Hello")
print("World")
```
print("Hello")
print("World")
print("Hello")
print("World")
print("Hello")
print("World")
12. Markdown注释
[^_^]:# 我是注释
13. 数学公式(Latex语法)
[^_^]:# 行内公式
$x^2 + y^2 = z^2$
[^_^]:# 段落公式
$$
\Phi (x)=\frac{1}{\sqrt{2\pi}}\int_{-\infty}^x e^{-\frac{t^2}{2}} \mathrm{d}t
$$