Quote:
Originally Posted by eschwartz
The manual has a link to the source repository at https://code.launchpad.net/~thinkcsp...thinkcspy3-rle (It uses Launchpad's Bzr VCS, but you can also download the tarball at "Browse the code" --> View Revision (starts at latest) --> Download tarball).
For general elucidation of people:
The manual was written in reStructuredText, which together with Sphinx (which processes *.rst input) is the standard form of Python documentation. 
Sphinx comes with a number of builtin "builder" modules to generate documentation output. In addition to html, it also offers htmlhelp (for CHM), LaTeX, txt, texinfo, manpages, xml, and of course EPUB.
This manual also has a default Makefile, so once you have the *.rst source for the manual it is as simple as
Or if you don't have Make, you can directly run:
Code:
sphinx-build -d build/doctrees/ -b epub source/ build/epub/
|
Many thanks for your explanation, very clear.