add testdoc
This commit is contained in:
parent
58cd2366f9
commit
cebe6b5d00
|
@ -0,0 +1 @@
|
|||
test
|
|
@ -196,4 +196,52 @@ git checkout master
|
|||
git merge upstream/master
|
||||
git push origin master
|
||||
```
|
||||
## 用法举例
|
||||
|
||||
### 增加菜单栏选项的内容
|
||||
|
||||
在'社区'菜单栏中增加'测试文档'选项:
|
||||
```
|
||||
cd xuos-web/docs/.vuepress
|
||||
vim config.js
|
||||
```
|
||||
找到'社区',在其中子目录添加
|
||||
```
|
||||
{
|
||||
text:'测试文档'
|
||||
link:'/community/testdoc.html'
|
||||
}
|
||||
```
|
||||
转到目录并添加:
|
||||
```
|
||||
cd xuos-web/docs/community
|
||||
vim testdoc.md
|
||||
```
|
||||
在文件testdoc.md中增加目标内容
|
||||
|
||||
|
||||
### 增加图片
|
||||
|
||||
在xuos-web/docs/doc/hardware/processor/riscv.md中增加图片img.png
|
||||
|
||||
方法1:在当前目录存放图片
|
||||
```
|
||||
cd xuos-web/docs/doc/hardware/processor/
|
||||
mkdir imagesrc
|
||||
```
|
||||
将图片img.png放入文件夹imagesrc中
|
||||
在riscv.md中需要用到该图片的位置添加
|
||||
```
|
||||
./imagesrc/img.png
|
||||
```
|
||||
图片添加完成。
|
||||
|
||||
|
||||
方法2:在根目录存放图片
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue