dioxus/docs
Jason Schein 01e5e7e47f
hooks.md and walkthrough_readme.md updates. (#1094)
* Minor improvements to hooks.md, mostly adding more links.

* walkthrough_readme.md updated to be more friendly to unfamiliar readers.

---------

Co-authored-by: ealmloff <evanalmloff@gmail.com>
2023-07-18 15:49:20 -05:00
..
fermi feat: integrate fermi 2022-02-17 10:38:51 -05:00
guide hooks.md and walkthrough_readme.md updates. (#1094) 2023-07-18 15:49:20 -05:00
posts Fix: Remove play button from guide example (#1118) 2023-06-28 09:32:42 -05:00
reference Fix: Remove play button from guide example (#1118) 2023-06-28 09:32:42 -05:00
router Fixed typo in Router guide getting-started.md (#1208) 2023-07-17 17:18:11 -05:00
.nojekyll docs: strong improvmenets, first major section done 2021-10-29 00:28:23 -04:00
README.md fix docs build command 2023-05-09 07:24:17 -05: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.

cargo install mdbook --git https://github.com/Demonthos/mdBook.git --branch master

Then, you can build the documentation by running:

cd docs
cd guide
mdbook build -d ../nightly/guide
cd ..
cd router
mdbook build -d ../nightly/router
cd ../../