Markdown 渲染组件测试用例
主要用于编写 Markdown 渲染组件时测试使用
原文
# heading1
## heading2
### heading3
#### heading4
##### heading5
###### heading6
> blockquote line 1
> blockquote line 2
> blockquote line 3
paragraph content line 1
paragraph content line 2
paragraph content line 3
- unordered list item1
- unordered list item2
- unordered list item3
1. ordered list item1
2. ordered list item2
3. ordered list item3
_emphasis 1_
*emphasis 2*
__strong 1__
**strong 2**
~delete 1~
~~delete 2~~
`inline code`
```
code block 1
```
[link to "example.com" without title](https://example.com)
[link to "example.com" with title](https://example.com "example.com")


horizontal rules
___
_ _ _
---
- - -
***
* * *效果
heading1
heading2
heading3
heading4
heading5
heading6
blockquote line 1 blockquote line 2 blockquote line 3
paragraph content line 1
paragraph content line 2
paragraph content line 3
- unordered list item1
- unordered list item2
- unordered list item3
- ordered list item1
- ordered list item2
- ordered list item3
emphasis 1
emphasis 2
strong 1
strong 2
delete 1
delete 2
inline code
code block 1
link to “example.com” without title
link to “example.com” with title
horizontal rules