2018-12-09 23:22:10 +08:00
|
|
|
|
# Rust 程序设计语言(第二版 & 2018 edition) 简体中文版
|
2017-03-04 12:10:32 +08:00
|
|
|
|
|
2018-01-11 23:12:20 +08:00
|
|
|
|
[![Build Status](https://travis-ci.org/KaiserY/trpl-zh-cn.svg?branch=master)](https://travis-ci.org/KaiserY/trpl-zh-cn)
|
|
|
|
|
|
2018-03-05 09:59:52 +08:00
|
|
|
|
## 状态
|
|
|
|
|
|
2018-12-09 23:22:10 +08:00
|
|
|
|
2018 edition 的翻译迁移已基本完成,欢迎阅读学习!
|
2018-03-05 09:59:52 +08:00
|
|
|
|
|
2018-12-06 21:49:12 +08:00
|
|
|
|
PS:
|
|
|
|
|
|
2019-05-16 12:18:38 +08:00
|
|
|
|
* 对照源码位置:[https://github.com/rust-lang/book/tree/master/src][source]
|
2018-12-06 21:49:12 +08:00
|
|
|
|
* 每章翻译开头都带有官方链接和 commit hash,若发现与官方不一致,欢迎 Issue 或 PR :)
|
2018-03-05 09:59:52 +08:00
|
|
|
|
|
2019-05-16 12:18:38 +08:00
|
|
|
|
[source]: https://github.com/rust-lang/book/tree/master/src
|
|
|
|
|
|
2018-07-19 10:22:27 +08:00
|
|
|
|
## 静态页面构建与文档撰写
|
|
|
|
|
|
2019-05-16 12:18:38 +08:00
|
|
|
|
![image](./vuepress_page.png)
|
2018-07-19 10:49:07 +08:00
|
|
|
|
|
2018-07-19 10:22:27 +08:00
|
|
|
|
### 构建
|
|
|
|
|
|
2018-12-09 23:22:10 +08:00
|
|
|
|
你可以将本 mdbook 构建成一系列静态 html 页面。这里我们采用 [vuepress](https://vuepress.vuejs.org/zh/) 打包出静态网页。在这之前,你需要安装 [Nodejs](https://nodejs.org/zh-cn/)。
|
2018-07-19 10:22:27 +08:00
|
|
|
|
|
2018-12-09 23:22:10 +08:00
|
|
|
|
全局安装 vuepress
|
2018-07-19 10:22:27 +08:00
|
|
|
|
|
|
|
|
|
``` bash
|
2020-07-05 17:55:59 +08:00
|
|
|
|
npm i -g vuepress
|
2018-07-19 10:22:27 +08:00
|
|
|
|
```
|
|
|
|
|
|
2018-12-09 23:22:10 +08:00
|
|
|
|
cd 到项目目录,然后开始构建。构建好的静态文档会出现在 "./src/.vuepress/dist" 中
|
2018-07-19 10:22:27 +08:00
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
vuepress build ./src
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### 文档撰写
|
|
|
|
|
|
2018-12-09 23:22:10 +08:00
|
|
|
|
vuepress 会启动一个本地服务器,并在浏览器对你保存的文档进行实时热更新。
|
2018-07-19 10:22:27 +08:00
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
vuepress dev ./src
|
|
|
|
|
```
|
|
|
|
|
|
2018-03-05 09:59:52 +08:00
|
|
|
|
## 社区资源
|
|
|
|
|
|
2019-11-11 00:46:06 +08:00
|
|
|
|
- Rust语言中文社区:<https://rust.cc/>
|
|
|
|
|
- Rust 中文 Wiki:<https://wiki.rust-china.org/>
|
2018-03-05 09:59:52 +08:00
|
|
|
|
- Rust编程语言社区主群:303838735
|
|
|
|
|
- Rust 水群:253849562
|
|
|
|
|
|
|
|
|
|
## GitBook
|
|
|
|
|
|
|
|
|
|
本翻译主要采用 [mdBook](https://github.com/rust-lang-nursery/mdBook) 格式。同时支持 [GitBook](https://github.com/GitbookIO/gitbook),但会缺失部分功能,如一些代码没有语法高亮。
|
|
|
|
|
|
2019-11-11 00:46:06 +08:00
|
|
|
|
本翻译加速查看站点有:
|
|
|
|
|
- 深圳站点:<http://120.78.128.153/rustbook>
|
2018-07-19 12:16:46 +08:00
|
|
|
|
|
2019-11-11 00:46:06 +08:00
|
|
|
|
[GitBook.com](https://www.gitbook.com/) 地址:<https://legacy.gitbook.com/book/kaisery/trpl-zh-cn/details>
|