Markdown 快速入门,掌握常用格式

Markdown 是一种轻量级标记语言,它允许人们使用易读易写的纯文本格式编写文档。如果你没接触过Markdown 可以继续往下看,可以快速入门并掌握一些常用的写法。

Markdown 快速入门,掌握常用格式

基本写作

段落:只需在行后面加一个或多个空行

1
2
3
段落1

段落2

标题:在文字前面加#

1
2
3
4
# 一个井号 <h1>
## 两个井号 <h2>
...
###### 六个井号 <h6>

引用文字:在文字前面加 >

1
> 引用文字

效果:

这里是引用文字

斜体

1
*斜体*

粗体

1
**粗体**

无序列表

1
2
3
4
5
6
7
* Item
* Item
* Item

- Item
- Item
- Item

有序列表

1
2
3
1. Item 1
2. Item 2
3. Item 3

嵌套列表

1
2
3
4
5
6
7
8
1. Item 1
  1. A corollary to the above item.
  2. Yet another point to consider.
2. Item 2
  * A corollary that does not need to be ordered.
    * This is indented four spaces, because it's two spaces further than the item above.
    * You might want to consider making a new list.
3. Item 3

行内代码:在文字两头加(`)

1
行内代码 `<code>` 文字

代码模块:在两头加 (

1
2

\`\`\` 
x = 0 x = 2 + 2 what is x
1
2
3
4
5
\`\`\`


**链接**
http://google.com/ http://google.com/ google

1
2
3

**图片**
Alt text

Alt text

1
2
3
4
5

## GitHub Flavored Markdown

** 删除线 **
Mistaken text.
1
2
3

** 表格 **

First Header Second Header
Content Cell Content Cell
Content Cell Content Cell

## 参考

- Markdown 语法说明简体中文版 http://wowubuntu.com/markdown/
- GitHub Flavored Markdown https://help.github.com/articles/github-flavored-markdown/

本文网址: https://pylist.com/topic/84.html 转摘请注明来源

Suggested Topics

用 misaka 实现 gfm Markdown 格式

misaka 是python 世界性能最好的 markdown 解析库,gfm (GitHub Flavored Markdown)是 github 扩展的格式。可以通过下面的方式用 misaka 实现 gfm 解析...

python编程中常用的12种基础知识总结

python编程中常用的12种基础知识总结:正则表达式替换,遍历目录方法,列表按列排序、去重,字典排序,字典、列表、字符串互转,时间对象操作,命令行参数解析(getopt),print 格式化输出,进制转换,Python调用系统命令或者脚本,Python 读写文件。...

Leave a Comment