Skip to content

Latest commit

 

History

History
31 lines (19 loc) · 1.17 KB

README.md

File metadata and controls

31 lines (19 loc) · 1.17 KB

The PSudo Books

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.

Requirements

  • mdBook - Build a book from Markdown files.

Build

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.

Watch

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