From 349b5500e765564e107c06e91dc745a344870449 Mon Sep 17 00:00:00 2001 From: "autumnsilverleaves@gmail.com" Date: Thu, 19 Jul 2018 10:22:27 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E9=9D=99=E6=80=81=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2=E6=9E=84=E5=BB=BA=E3=80=81=E6=96=87=E6=A1=A3=E6=92=B0?= =?UTF-8?q?=E5=86=99=E7=83=AD=E6=9B=B4=E6=96=B0=E6=96=B9=E6=B3=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 增加静态页面构建、文档撰写热更新方法 --- README.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/README.md b/README.md index d9ebbe6..e5e22d3 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,32 @@ 每章翻译开头都带有官方链接和 commit hash,若发现与官方不一致,欢迎 Issue 或 PR :) +## 静态页面构建与文档撰写 + +### 构建 + +你可以将本mdbook构建成一系列静态html页面。这里我们采用vuepress打包出静态网页。在这之前,你需要安装Nodejs。 + +全局安装vuepress + +``` bash +npm i -g vuepress +``` + +cd到项目目录,然后开始构建。构建好的静态文档会出现在"./src/.vuepress/dist"中 + +```bash +vuepress build ./src +``` + +### 文档撰写 + +vuepress会启动一个本地服务器,并在浏览器对你保存的文档进行实时热更新。 + +```bash +vuepress dev ./src +``` + ## 社区资源 - Rust语言中文社区:[https://rust.cc/](https://rust.cc/)