dioxus/docs/README.md

20 lines
436 B
Markdown
Raw Normal View History

2023-05-06 20:15:49 +00:00
# Building the Documentation
Dioxus uses a fork of MdBook with multilanguage support. To build the documentation, you will need to install the forked version of MdBook.
```sh
cargo install mdbook --git https://github.com/Demonthos/mdBook.git --branch master
```
Then, you can build the documentation by running:
```sh
2023-05-09 12:24:17 +00:00
cd docs
cd guide
mdbook build -d ../nightly/guide
cd ..
cd router
mdbook build -d ../nightly/router
cd ../../
2023-05-06 20:15:49 +00:00
```