2018-02-01 03:29:39 +02:00
|
|
|
# mdBook-specific markdown
|
2018-01-31 11:57:47 +01:00
|
|
|
|
|
|
|
|
## Hiding code lines
|
|
|
|
|
|
2018-08-02 21:34:26 -05:00
|
|
|
There is a feature in mdBook that lets you hide code lines by prepending them
|
|
|
|
|
with a `#`.
|
2018-01-31 11:57:47 +01:00
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
# fn main() {
|
|
|
|
|
let x = 5;
|
|
|
|
|
let y = 6;
|
|
|
|
|
|
|
|
|
|
println!("{}", x + y);
|
|
|
|
|
# }
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Will render as
|
|
|
|
|
|
|
|
|
|
```rust
|
|
|
|
|
# fn main() {
|
|
|
|
|
let x = 5;
|
|
|
|
|
let y = 7;
|
|
|
|
|
|
|
|
|
|
println!("{}", x + y);
|
|
|
|
|
# }
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Including files
|
|
|
|
|
|
|
|
|
|
With the following syntax, you can include files into your book:
|
|
|
|
|
|
|
|
|
|
```hbs
|
2018-08-02 19:04:35 -05:00
|
|
|
\{{#include file.rs}}
|
2018-01-31 11:57:47 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
The path to the file has to be relative from the current source file.
|
|
|
|
|
|
2018-08-02 21:34:26 -05:00
|
|
|
Usually, this command is used for including code snippets and examples. In this
|
|
|
|
|
case, oftens one would include a specific part of the file e.g. which only
|
|
|
|
|
contains the relevant lines for the example. We support four different modes of
|
|
|
|
|
partial includes:
|
2018-01-31 11:57:47 +01:00
|
|
|
|
|
|
|
|
```hbs
|
2018-08-02 19:04:35 -05:00
|
|
|
\{{#include file.rs:2}}
|
|
|
|
|
\{{#include file.rs::10}}
|
|
|
|
|
\{{#include file.rs:2:}}
|
|
|
|
|
\{{#include file.rs:2:10}}
|
2018-01-31 11:57:47 +01:00
|
|
|
```
|
|
|
|
|
|
2018-08-02 21:34:26 -05:00
|
|
|
The first command only includes the second line from file `file.rs`. The second
|
|
|
|
|
command includes all lines up to line 10, i.e. the lines from 11 till the end of
|
|
|
|
|
the file are omitted. The third command includes all lines from line 2, i.e. the
|
|
|
|
|
first line is omitted. The last command includes the excerpt of `file.rs`
|
|
|
|
|
consisting of lines 2 to 10.
|
2018-01-31 11:57:47 +01:00
|
|
|
|
|
|
|
|
## Inserting runnable Rust files
|
|
|
|
|
|
|
|
|
|
With the following syntax, you can insert runnable Rust files into your book:
|
|
|
|
|
|
|
|
|
|
```hbs
|
2018-08-02 19:04:35 -05:00
|
|
|
\{{#playpen file.rs}}
|
2018-01-31 11:57:47 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
The path to the Rust file has to be relative from the current source file.
|
|
|
|
|
|
2018-08-02 21:34:26 -05:00
|
|
|
When play is clicked, the code snippet will be sent to the [Rust Playpen] to be
|
|
|
|
|
compiled and run. The result is sent back and displayed directly underneath the
|
|
|
|
|
code.
|
2018-01-31 11:57:47 +01:00
|
|
|
|
|
|
|
|
Here is what a rendered code snippet looks like:
|
|
|
|
|
|
|
|
|
|
{{#playpen example.rs}}
|
|
|
|
|
|
|
|
|
|
[Rust Playpen]: https://play.rust-lang.org/
|