Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rustcc/rust-by-example
通过例子学习Rust语言
https://github.com/rustcc/rust-by-example
Last synced: about 1 month ago
JSON representation
通过例子学习Rust语言
- Host: GitHub
- URL: https://github.com/rustcc/rust-by-example
- Owner: rustcc
- License: apache-2.0
- Fork: true (rust-lang/rust-by-example)
- Created: 2014-11-12T08:11:40.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2018-11-15T11:04:10.000Z (about 6 years ago)
- Last Synced: 2024-08-04T11:03:16.128Z (5 months ago)
- Language: Rust
- Homepage: http://rustcc.github.io/rust-by-example/
- Size: 7.19 MB
- Stars: 134
- Watchers: 16
- Forks: 28
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
[![Build Status][travis-image]][travis-link]
# Rust by Example## 中文版在线预览
- http://rustcc.github.io/rust-by-example/
- http://rust.cc/rust-by-example/## 中文版译者注意
请翻译修改 examples 目录及其子目录内的 input_zh-CN.md 文件,内容参考同目录下 input.md 文件内的英文(注意: input_zh-CN.md 内的英文很可能是旧版的,勿直接翻译)。请使用 UTF-8 编码存储中文文档,否则程序不能正确读取,导致最终生成英文版页面。
尽量不要改其他文件,以方便合并来自官方 upstream 的更新。生成中文版图书的方法请参考Wiki。 —— Liigo。## What's this?
This is the source code of the [Rust by Example][website] website!
## How to contribute
See [CONTRIBUTING.md][how-to-contribute].
## How to generate the static site
First, make certain you install `nodejs` on Debian based distributions, or
`node` on non-Debian distros. After installation, if you use a Debian based
distro (i.e. Ubuntu), run:sudo ln -s /usr/bin/nodejs /usr/bin/node
Then run:
```
make all
make book
make test
```View the results with `make serve`.
### Details
We use these tools to generate the static site:
* [Rust][rust-lang] \o/
* [GitBook][gitbook]`gitbook` will generate the site from Markdown files (see details about how it
works [here][gitbook-format]).Before running `gitbook`, we do a preprocessing step using
[src/main.rs][main-rs].This preprocessing has two steps:
### Generating the `SUMMARY.md`
`SUMMARY.md` is generated from the
[examples/structure.json][structure] file. This JSON file
contains a tree-like structure of "examples".Each example has:
* an id, e.g. `hello`
* a title, e.g. `Hello World`
* optionally, children, which is a vector of sub-examples, e.g. `null`
* a directory under `examples`, e.g. [examples/hello][hello-folder]
* an entry in examples/structure.json, e.g.
`{ "id": "hello", "title": "Hello World", "children": null }`
* some source file(s), e.g. [examples/hello/hello.rs][hello-rs]
* an input markdown file, e.g.
[examples/hello/input.md][hello-md]When dealing with a child example, the path will have to include the id of its
ancestors; e.g. `examples/variable/mut/input.md`, implies that a `mut` example
lives under the `variable` example.### Processing `input.md`
Instead of including the Rust code directly in `input.md`, the code lives in
separate source files; the preprocessing step will insert the source code
into the Markdown file.For example, to insert the source code of the `hello.rs` file, the following
syntax is used in the Markdown file:* `{hello.play}` expands the source code embedded in a live code editor
* `{hello.rs}` expands to static/plain source code.
* `{hello.out}` expands to the output of executing the source code.The Makefile provides the following recipes:
* `make`: builds `update.rs` and does the preprocessing step
* `make book`: runs `gitbook` to generate the book
* `make serve`: runs `gitbook --serve` to generate the book and publishes it
under `localhost:4000`
* `make test`: will check all the rust source files for compilation errors## License
Rust by Example is dual-licensed under the Apache 2.0 license and the MIT
license.See LICENSE-APACHE and LICENSE-MIT for more details.
[travis-image]: https://travis-ci.org/rust-lang/rust-by-example.svg?branch=master
[travis-link]: https://travis-ci.org/rust-lang/rust-by-example
[website]: http://rustbyexample.com
[how-to-contribute]: CONTRIBUTING.md
[rust-lang]: http://www.rust-lang.org/
[gitbook]: http://www.gitbook.io
[gitbook-format]: https://github.com/GitbookIO/gitbook#book-format
[main-rs]: src/main.rs
[structure]: examples/structure.json
[hello-folder]: examples/hello
[hello-rs]: examples/hello/hello.rs
[hello-md]: examples/hello/input.md