Markdown 基本用法

Markdown优点

Markdown是一种轻量级标记语言,它以纯文本形式(易读、易写、易更改)编写文档,并最终以HTML格式发布。

  • 纯文本,兼容性极强,所有文本编辑器都可打开。
  • 标记语法可读性强。
  • 让你专注于文字而不是排版。
  • 格式转换方便,轻松转换为 html、电子书等。
  • 摆脱Word。
  • 跨平台使用。
  • 越来越多的网站支持Markdown。

Markdown语法

代码与语法高亮

代码区块的建立是在每行加上4个空格或者一个制表符(如同写代码一样)

<php>
       echo “不带行号";
</php>
1
2
3
<php>
echo '带行号';
</php>

行内需要引用代码,只要用反引号引起来

Use the `console.log('test')` function.

标题

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

列表

1
2
3
4
5
6
7
- 无序列表1
- 无序列表2
- 无序列表3

1. 有序列表1
2. 有序列表2
3. 有序列表3

引用

> 这个是引用

粗体与斜体

**这个是粗体**
*这个是斜体*

链接与图片

插入链接

[link text](http://example.com/ "optional title")

link text

 [link text][id]
 [id]: http://example.com/  "optional title here"

<http://example.com/> or <address@example.com>

插入图片
形式和链接相似,只需在链接的基础上前方加一个

![alt text](/images/example.png "optional title")

alt text

图片与链接写法结合

[![alt text](/images/4766746846417a2e706e67.png "Fork you")](你的链接地址)

缩进

半方大的空白&ensp;或&#8194;
全方大的空白&emsp;或&#8195;
不断行的空白格&nbsp;或&#160;

分割线

可以在一行中用三个以上的星号、减号、底线来建立一个分隔线


删除线

~~Mistaken text.~~

Mistaken text.

反斜杠\

相当于反转义作用。使符号成为普通符号。

符号’`’

`ctrl+a`

表格

1
2
3
4
5
ABCD | EFGH | IGKL
-----|------|----
a | b | c
d | e | f
g | h | i
ABCD EFGH IGKL
a b c
d e f
g h i

任务

1
2
- [x] @mentions, #refs, [links](), **formatting**, and <del>tags</del> are supported
- [ ] this is an incomplete item
  • @mentions, #refs, links, formatting, and tags are supported
  • this is an incomplete item

Reference:
http://younghz.github.io/Markdown/
https://coolshell.cn/articles/11928.html