1
0

添加测试文章

This commit is contained in:
2022-03-05 19:27:27 +08:00
parent 3cc331c54f
commit 86dc252934
2 changed files with 130 additions and 1 deletions

View File

@@ -1,5 +1,18 @@
var appConfig = {
contentList: [],
contentList: [
{
name: 'default',
label: '默认',
items: [
{
name: 'test',
title: '测试Test',
createdAt: '2018-11-11',
updatedAt: '2021-10-31'
},
]
},
],
};

View File

@@ -0,0 +1,116 @@
# 测试Test
内容格式测试
## 目录
[TOC]
## 字体样式
- <font face="宋体">字体:宋体</font>
- <font face="黑体">字体:黑体</font>
- <font face="STCAIYUN">字体:华文彩云</font>
- <font color="#0099FF" size="1" face="微软雅黑">颜色:#0099FF 大小2 字体:微软雅黑</font>
- <font color="#00CCFF" size="5">颜色:#00CCFF 大小5</font>
- <font color="gray" size="5">颜色Gray 大小5</font>
## 待办事项
- [x] 已完成
- [ ] 未完成
## 标题
```markdown
# 一级标题
## 二级标题
### 三级标题
#### 四级标题
##### 五级标题
###### 六级标题
```
## 引用
> 一级引用
> > 二级引用
> > > 三级引用
## 列表
* 一级列表
* 二级列表
* 三级列表
1. 有序列表
1. 有序子列表
2. 有序子列表
* 无序子列表
* 无序子列表
* 无序列表
1. 有序子列表
2. 有序子列表
* 无序子列表
* 无序子列表
## 代码
```java
System.out.println("MarkDown");
```
```html
<a href="https://blog.frost-zx.top/">Frost-ZX</a>
<a href="https://minecraft.net/">Minecraft</a>
```
## 格式
- `重点文字`
- ~~删除线~~
- __下划线__
- ==高亮==
- ***粗斜体***
- **粗体**
- *斜体*
## 图片
![Favicon](/favicon.ico)
## 表格
简单的表格
| First Header | Second Header | Third Header |
| ------------ | ------------- | ------------ |
| Content Cell | Content Cell | Content Cell |
| Content Cell | Content Cell | Content Cell |
通过在标题分隔行添加冒号 `:`,定义表格单元的对齐格式:居左、居中、居右
| First Header | Second Header | Third Header |
| :----------- | :-----------: | -----------: |
| Left | Center | Right |
| Left | Center | Right |
表格使用示例
| 姓名 | 年龄 | 描述 |
| :--: | :---: | :------------- |
| 张三 | 10 岁 | **加粗 Bold** |
| 李四 | 20 岁 | [链接 Link](/) |
## 其他
### 位置
<p align="left">居左</p>
<p align="center">居中</p>
<p align="right">居右</p>
### 手动换行
HTML 标签 `<br>`