Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

scarlet-queen Documentation (mdbook)

project directory: docs/

[!IMPORTANT] When editing docs for the first time, let it add mdbook

install command is under the command

cargo install mdbook
  • start dev server

[!TIP] This commands cannot deal with hot reloading. You have to reload manually, when you change the docs.

mdbook watch -o ./docs
  • build docs
mdbook build ./docs

mdbook plugins

  • mdbook-mermaid

You can use mermaid diagrams in this docs.

example

```mermaid
graph TD;
    A-->B;
    A-->C;
    B-->D;
    C-->D;
```