You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
11
+
```
12
+
13
+
To install mdBook, run the following command:
14
+
15
+
```bash
16
+
cargo install mdbook
17
+
```
18
+
19
+
## Usage
20
+
21
+
To build the book, run the following command:
22
+
23
+
```bash
24
+
mdbook build
25
+
```
26
+
27
+
To serve the book, run the following command:
28
+
29
+
```bash
30
+
npx serve book -p 3000
31
+
```
32
+
33
+
## Configuration
34
+
35
+
The configuration file is located at `book.toml`.
36
+
37
+
We've enabled the following features:
38
+
39
+
***Giscus**: To enable comments on the book. See [mdbook-embedify](https://mr-addict.github.io/mdbook-embedify/third-party/giscus.html) for more details.
40
+
***Mermaid**: To enable diagrams in the book. See [mdbook-mermaid](https://github.com/badboy/mdbook-mermaid) for more details.
0 commit comments