防止冲突,备份
This commit is contained in:
81
public/blog/md0/src/php-markdown/demo/test.md
Executable file
81
public/blog/md0/src/php-markdown/demo/test.md
Executable 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)
|
||||

|
||||
|
||||
**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
|
||||
Reference in New Issue
Block a user