为了保持规范,编写文档时,需要使用预设好的格式进行开发。
若希望创建一个新的页面,其步骤为:
- 若新建了目录层级,则需要在 js/sider/category.json 中增加条目
- 在 js/sider/items.json 中增加条目
- 执行编译(若执行了 dev 命令则无需此步骤)
npm run build
- 在 html 目录下新增对应位置的文档
模板可参考 src/html/template.html
。
编写文档时,请保持以下嵌套格式。
- section
- h2
- p
- 正文
- h3
- p
- 正文
- h4
- 正文
- h5
- 正文
<table>
<tr>
<th>表头</th>
</tr>
<tr>
<td>内容</td>
</tr>
</table>
<figure>
<img src="picture.jpg">
<figcaption>图片描述(可选)</figcaption>
</figure>
<div class="tip">这是一些引用文本</div>
<div class="preset-question">为什么?</div>
<div class="preset-answer">回答</div>
在代码块中对部分代码进行强调。
const el = <span class="strong">document.getElementById('id')</span>;
在文档中对部分文本进行强调。
这是一个<span class="definition">名词术语</span>。
这是一个不一样的<span class="different">词</span>
在底部的参考文献添加参考文献的地址,格式为:
<div>[1] 标题 <a href="链接">链接</a></div>
若引用了原文,则需要在片段后加上标,比如:
这是一段引用的文字<sup>[1]</sup>