Markdown基础标签
- 标题:
# [内容]。加几个#号是几级标题。 - 无序列表:
- [内容]。 - 有序列表:
<1. 2. 3. ......> [内容]。 - 链接:
[显示文本](链接地址)。 - 图片:
。 - 引用:
> 引用内容。连续多行引用并为一行。 - 斜体:
*内容*。 - 粗体:
**内容**。 - 转义:
\符号。 - 分割线:
***。
Markdown代码标签
- 单行代码:
\内容` `。 - 多行代码:
```多行内容```。
Markdown表格
| Tables | Are | Cool |
| :--------- |:-------:| -------:|
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |
| Tables | Are | Cool |
|---|---|---|
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |