标题

# 标题1
## 标题2

粗体与斜体

### 斜体
Italicized text is the *cat's meow* # 斜体
A*cat*meow # 斜体(突出中间部分)
### 粗体
**bold text**
__bold text__

效果如下:

斜体

Italicized text is the cat’s meow # 斜体
Acatmeow # 斜体(突出中间部分)

粗体

bold text
bold text

代码块

# 上面三个\`,下面三个\`

引用

# 嵌套引用
> Dorothy followed her through many of the beautiful rooms in her castle.
>
>> The Witch bade her clean the pots and kettles and sweep the floor and keep the fire fed with wood.
## 带其他元素的引用
> #### The quarterly results look great!
>
> - Revenue was off the chart.
> - Profits were higher than ever.
>
> *Everything* is going according to **plan**.

效果如下:

嵌套引用

Dorothy followed her through many of the beautiful rooms in her castle.

The Witch bade her clean the pots and kettles and sweep the floor and keep the fire fed with wood.

带其他元素的引用

The quarterly results look great!

  • Revenue was off the chart.
  • Profits were higher than ever.

Everything is going according to plan.

列表

## 有序列表
1. First item
2. Second item
3. Third item
4. Fourth item
## 无序列表
- First item
+ Second item
- Third item
- Indented item
- Indented item
* Fourth item

效果如下:

有序列表

  1. First item
  2. Second item
  3. Third item
  4. Fourth item

无序列表

  • First item
  • Second item
  • Third item
    • Indented item
    • Indented item
  • Fourth item

分割线

***

---

_________________

效果如下:




链接

这是一个链接 [Markdown语法](https://markdown.com.cn "标题")。
<https://markdown.com.cn>
## 格式化
I love supporting the **[EFF](https://eff.org)**.
This is the *[Markdown Guide](https://www.markdownguide.org)*.
See the section on [`code`](#code).

效果如下:
这是一个链接 Markdown语法
https://markdown.com.cn

格式化

I love supporting the EFF.
This is the Markdown Guide.
See the section on code.

图片

![这是图片](/assets/img/philly-magic-garden.jpg "Magic Gardens")
## 链接图片
[![沙漠中的岩石图片](/assets/img/shiprock.jpg "Shiprock")](https://markdown.com.cn)

效果如下:
这是图片

链接图片

沙漠中的岩石图片

流程图

详见https://mermaid.js.org/syntax/flowchart.html
最小示例:

# options contains:
# TB - Top to bottom
# TD - Top-down/ same as top to bottom
# BT - Bottom to top
# RL - Right to left
# LR - Left to right
{% mermaid %}
flowchart [options]
A[Start] --> B{Is it?}
B -- Yes --> C[OK]
C --> D[Rethink]
D --> B
B -- No ----> E[End]
{% endmermaid %}
">[1]

引用参考文献:


  1. 1. ``` -->