This repository contains the source code of three books: the "PSudo Guidebook", the "PSudo Reference Book", and the "PSudonomicon".
These books are available on our website. You can see the "PSudo Guidebook" from here, the "PSudo Reference" from here, and the "PSudonomicon" from here.
- mdBook - Build a book from Markdown files.
Just type following command on the directory of a book you want to build.
mdbook build
Compiled output will be available at ./book
folder. If you want to see the output on browser, just open ./book/index.html
with your most loved browser.
When writing the book, the build command is so verbose because we need to type on every edit. However, we can use the following command to write documents more comfortably.
# It just compile on every edit. Browser requires refresh.
mdbook watch
# Same to watch, but open https://localhost:3000 (port is changelabe) which reload browser on every edit.
mdbook serve