100-exercises-to-learn-rust
100-exercises-to-learn-rust copied to clipboard
How to run the gitbook locally like the rust book?
trafficstars
Hi, First off thank you so much for this book. I was thinking, now that I have cloned this repository, is there any way to serve this git book locally? Like for example how you can open the rust book using rustup doc --book.
I don't know if there is an easy way to build a local version but you can print it to PDF using the button in the top right
Are you probably looking for mdbook?
Ex. $mdbook serve book/
@gumikola That is exactly what I was looking for. Thank you.