This project uses reStructured Text (RST) and ReadTheDocs . As a library for the current theme, Sphinx Python library was used, using Python v. 2.7.
First things first, you will need to install the following tools:
- Install Python 2.7
- After that then you will need to install Sphinx:
pip install -U Sphinx
You're all set! after this you will only need to use your favorite editor for RST files.
You can find a lot of information about RST on this site
This is pretty straightforward by going to the root of the project on the command line and then do:
make html
This will generate a folder called _build which inside has the folder html containing all the html files needed.
This is very similar to the previous step, you will need to execute on command line:
make latexpdf
with this, a new folder inside _build will be generated, called latex and in there you can find the pdf file generated from RST (by default it is called "ReadTheDocsTemplate.pdf").
(Additional latex files are also generated if needed.)