[src/doc/book] Apply 01-*.md changes into index.md
authorBehnam Esfahbod <behnam@zwnj.org>
Thu, 31 Aug 2017 01:02:21 +0000 (18:02 -0700)
committerBehnam Esfahbod <behnam@zwnj.org>
Thu, 31 Aug 2017 01:09:34 +0000 (18:09 -0700)
src/doc/MIGRATION_MAP
src/doc/index.md

index 0cbfa3b3ba398bfdb1eeafea9ad37ae18f6bdad6..85c7ed5702a21bb208cab5af487f7f124168c2c8 100644 (file)
@@ -4,8 +4,8 @@ crates-io.md book/src/03-06-crates-io.md
 environment-variables.md book/src/03-04-environment-variables.md
 external-tools.md book/src/03-09-external-tools.md
 faq.md book/src/faq.md
-guide.md book/src/guide.md
-index.md
+guide.md book/src/guide.md book/src/02-*.md
+index.md book/src/SUMMARY.md book/src/01-*.md
 manifest.md
 pkgid-spec.md
 policies.md
index d17249d00f7a4a4cfee99317833817fbac7ff8c7..f2fbf81a0f524aa236ad19ad4f4b6a6a91098066 100644 (file)
@@ -63,9 +63,10 @@ fn main() {
 
 Cargo generated a “hello world” for us. Let’s compile it:
 
-<pre><code class="language-shell">$ cargo build
-<span style="font-weight: bold"
-class="s1">   Compiling</span> hello_world v0.1.0 (file:///path/to/project/hello_world)</code></pre>
+```shell
+$ cargo build
+   Compiling hello_world v0.1.0 (file:///path/to/project/hello_world)
+```
 
 And then run it:
 
@@ -76,12 +77,12 @@ Hello, world!
 
 We can also use `cargo run` to compile and then run it, all in one step:
 
-<pre><code class="language-shell">$ cargo run
-<span style="font-weight: bold"
-class="s1">     Fresh</span> hello_world v0.1.0 (file:///path/to/project/hello_world)
-<span style="font-weight: bold"
-class="s1">   Running</span> `target/hello_world`
-Hello, world!</code></pre>
+```shell
+$ cargo run
+     Fresh hello_world v0.1.0 (file:///path/to/project/hello_world)
+   Running `target/hello_world`
+Hello, world!
+```
 
 # Going further