# 字体样式<no value>

|字体样式|语法|示例|输出|
|:---:|:---:|:---:|:---:|
|粗体|`** **`|`**粗体**`|**粗体**|
|斜体|`* *`|`*斜体*`|*斜体*|
|粗体嵌套斜体|`** * ***`|`**前面是粗体*后面是粗体+斜体***`|**前面是粗体*后面是粗体+斜体***|
|全部粗体+斜体|`*** ***`|`***全部粗体+斜体***`|***全部粗体+斜体***|
|删除文本|`~~ ~~`|`~~删除文本~~`|~~删除文本~~|

#### 高亮字体

语法:`== ==`
示例:
``` markdown
这是==高亮==文本
```
输出:   

这是==高亮==文本   


I need to highlight these ==very important words==.

#### 引用文本
语法:
``` markdown
> 内容
```
示例 1:引用文本
``` markdown
> Cisco's network is made up of systems that address the unique needs of each place in the network, connected by a common infrastructure. These systems help us speed new technology, protect network and data integrity, and improve employee productivity.
```
输出:
> Cisco's network is made up of systems that address the unique needs of each place in the network, connected by a common infrastructure. These systems help us speed new technology, protect network and data integrity, and improve employee productivity. 
---
示例2:多个引用文本

语法:
``` markdown
> 内容
>
> 内容
```
示例:
``` markdown
> Cisco's network is made up of systems that address the unique needs of each place in the network, connected by a common infrastructure. 
>
>These systems help us speed new technology, protect network and data integrity, and improve employee productivity.
```
输出:
> Cisco's network is made up of systems that address the unique needs of each place in the network, connected by a common infrastructure. 
>
>These systems help us speed new technology, protect network and data integrity, and improve employee productivity.
---
示例 3:嵌套引用文本

语法:
``` markdown
> Cisco's network is made up of systems that address the unique needs of each place in the network, connected by a common infrastructure. 
>
>> These systems help us speed new technology, protect network and data integrity, and improve employee productivity.
```
输出:
> Cisco's network is made up of systems that address the unique needs of each place in the network, connected by a common infrastructure. 
>
>> These systems help us speed new technology, protect network and data integrity, and improve employee productivity.

---

示例 4:引用文本+其他元素
``` markdown
> Cisco's **network** is *made* ~~up~~ of systems   
> that address the unique needs of each place in the network, 
>
> 1. connected by a common infrastructure.
>    1. These systems help us speed new technology,
> - protect network and data integrity, and improve employee productivity.
```
输出:
> Cisco's **network** is *made* ~~up~~ of systems   
> that address the unique needs of each place in the network, 
>
> 1. connected by a common infrastructure.
>    1. These systems help us speed new technology,
> - protect network and data integrity, and improve employee productivity.