Markdown基本语法总结

1.标题

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

一级标题

二级标题

三级标题

四级标题

五级标题
六级标题

2.字体

**粗体**
*斜体*

粗体
斜体


3.列表

3.1.无序列表

- 无序列表项目a
- 无序列表项目b
- 无序列表项目c
  • 无序列表项目a
  • 无序列表项目b
  • 无序列表项目c

3.2.有序列表

1. 有序列表项目1
2. 无序列表项目2
3. 无序列表项目3
  1. 有序列表项目1
  2. 无序列表项目2
  3. 无序列表项目3

4.引用

4.1. 文字引用

> The Zen of Python

Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
Special cases aren't special enough to break the rules.
Although practicality beats purity.
Errors should never pass silently.
Unless explicitly silenced.
In the face of ambiguity, refuse the temptation to guess.
There should be one-- and preferably only one --obvious way to do it.
Although that way may not be obvious at first unless you're Dutch.
Now is better than never.
Although never is often better than right now.
If the implementation is hard to explain, it's a bad idea.
If the implementation is easy to explain, it may be a good idea.
Namespaces are one honking great idea -- let's do more of those!

4.2. 代码引用

单行:

` import this `

多行:

    ```
    import a
    import b.c
    from d import e
    ```

单行效果:
import this
多行效果:

import a
import b.c
from d import e

5. 链接

[简书](https://www.jianshu.com/)
![](https://cdn2.jianshu.io/assets/web/nav-logo-4c7bbafe27adc892f3046e6978459bac.png)

简书

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容