代码:
# 一级标题
## 二级标题
### 三级标题
#### 四级标题
##### 五级标题
###### 六级标题
效果:
代码:
**精彩**
效果:
精彩
代码:
*斜体*
效果:
斜体
代码:
==高亮==
效果:
==高亮==
代码:
2^2^
效果:
2^2^
代码:
H~2~o
效果:
H~2~o
代码:
> hello
效果:
hello
代码:
> hello
> > hello
效果:
hello
hello
代码:
?```
print('hello')
?```
效果:
print('hello')
代码:
`print(hello)`
效果:
print(hello)
代码:
<https://www.cnblogs.com/nickchen121/p/10821946.html>
效果:
https://www.cnblogs.com/nickchen121/p/10821946.html
代码:
[nickchen博客](https://www.cnblogs.com/nickchen121/p/10821946.html "nickchen博客")
效果:
代码:

效果:
代码:

效果:
代码:
1. one
2. two
3. three
效果:
代码:
* one
* two
* three
效果:
代码:
---
效果:
代码:
name | age
:-:|:-:
nick|20
效果:
name | age |
---|---|
nick | 20 |
代码:
$$
\sum_{i-1}^{10}f(i)\,\,\text{thanks}
$$
$$
\sum_{i-1}^{10}f(i),,\text{thanks}
$$
代码:
内嵌数学公式$\sum_{i=1}^{10}f(i)\,\,\text{thanks}$
效果:
内嵌数学公式$\sum_{i=1}^{10}f(i),,\text{thanks}$
原文:https://www.cnblogs.com/zhangmingyong/p/11246395.html