1·链接

<td><a href="http://www.example.com" class="custom-link" target="_blank">**example**</a></td>
<tr>
  <td><a href="http://www.example.com" class="custom-link" target="_blank">**example**</a></td>
</tr>
[显示的文本](http://example.com)

2·代码

示例:

代码区

3·添加图片

完整版

[![显示的文本](图片链接)](图片返回链接)

精简版

![显示的文本](图片链接)

4·添加副标题

- 内容

示例:

  • 内容

5·标题

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

示例:

一级标题

二级标题

三级标题

四级标题

6·强调

**粗体**
*斜体*

示例:
粗体
斜体

7·列表

* 无序列表项
* 无序列表项
* 无序列表项

示例1:

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

示例2:

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

8·引用

这是一段引用。
引用可以跨越多行显示!

9·表格

| Column 1 | Column 2 | Column 3 |
| -------- | -------- | -------- |
| John     | Doe      | Male     |
| Mary     | Smith    | Female   |

示例1:

Column 1Column 2Column 3
JohnDoeMale
MarySmithFemale

也可以无需对齐列…

| Column 1 | Column 2 | Column 3 |
| -------- | -------- | -------- |
| John | Doe | Male |
| Mary | Smith | Female |

示例2:

Column 1Column 2Column 3
JohnDoeMale
MarySmithFemale
<table class="table table-striped table-bordered table-hover">
<thead>
<tr>
<th align="center">网站名称</th>
<th align="center">网站地址</th>
<th align="center">描述</th>
</tr>
</thead>
<tbody>
<tr>
<td align="center">忆殇blog</td>
<td align="center">blog.yishang.us.kg</td>
<td align="center">博客</td>
</tr>
<tr>
<td align="center">Typecho</td>
<td align="center">typecho.org</td>
<td align="center">官方</td>
</tr>
</tbody>
</table>

示例3:

网站名称 网站地址 描述
忆殇blog blog.yishang.us.kg 博客
Typecho typecho.org 官方

10·视频

<video src="视频地址" width="100%" height="440" controls="controls"></video>

示例1:

<div style="display: flex; justify-content: center;">
<iframe src="视频链接" frameborder="0" allowfullscreen="true"></iframe>
</div>

示例2:

<iframe frameborder="0" width="100%" height="416" src="视频链接" allowfullscreen></iframe>

示例3: