防止冲突,备份

This commit is contained in:
2025-08-19 13:10:29 +08:00
parent 9a0a900d2e
commit bb58c12208
15 changed files with 56 additions and 1 deletions

View File

@@ -0,0 +1,81 @@
# 一级标题
## 二级标题
### 三级标题
#### 四级标题
##### 五级标题
###### 六级标题
*斜体*
**粗体**
- 项目1
- 项目2
- 项目3
- 项目4
+ 项目5
+ 项目6
+ 项目7
1. apple
2. boy
3. cat
[ ] 选择1
[-] 选择2
[-] 选择3
[ ] 选择4
---
```c
#include<stdio.h>
void test();
int main(){
printf("Hello,World!\n");
return 0;
}
void test(){
printf("Hello,World!");
}
```
[百度](https://www.baidu.com)
![图片](https://www.baidu.com/favicon.ico)
**blockquote使用方法**
>引言,这是一句引言
>Hello,World!
>>二级引言
>>>三级引言
apple|boy|cat
---|---|---
a|b|c
d|e|f
<table>
<thead>
<tr>
<th>Apple</th>
<th>Boy</th>
<th>Cat</th>
</tr>
</thead>
<tbody>
<tr>
<td>a</td>
<td>b</td>
<td>c</td>
</tr>
<tr>
<td>d</td>
<td>e</td>
<td>f</td>
</tr>
</tbody>
</table>
> I o u
> This is just a test...
>> Hello
> World