Markdown基本语法
# Heading level 1
## Heading level 2
### Heading level 3
#### Heading level 4
##### Heading level 5
###### Heading level 6
** bold text **
*Italic text*
*** bold Italic text ***
> 这是一个引用
> 嵌套块
>> 引用
有序列表
- 1. First item
- 1.Second item
- 1.Third item
- 1.Fourth item
无序列表
- - First item
- - Second item
- - Third item
- - Fourth item
C#代码块
``` csharp
using Sytem.IO;
public class class1
{
public bool Exists()
{
//code here.
}
}
```
这是一个链接我的博客。
这是一个链接[我的博客](https://www.cnblogs.com/kSong/)。