1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
|
How to build the Ghostscript documentation
==========================================
Welcome to the Ghostscript documentation. This documentation relies on Sphinx (https://www.sphinx-doc.org/en/master/) to publish HTML & PDF docs from markdown files written with restructured text / RST (https://en.wikipedia.org/wiki/ReStructuredText).
Installing Sphinx & dependencies
--------------------------------
1. You should follow the instructions on the Sphinx website to install Sphinx on your system.
2. Ensure you have Latex (https://www.latex-project.org/get/) installed
This ensures that you can build a PDF of the documentation.
3. The Sphinx documentation files also rely on the "readthedocs" theme to be installed, follow the instructions here: https://sphinx-rtd-theme.readthedocs.io/en/stable/installing.html
4. Once you have installed the "readthedocs" theme, depending on your OS, it will also have installed a `docutils` (http://docutils.sourceforge.net/) Python package.
This should be okay, however if you have issues with building docs for PDF ensure that the `docutils` version works for you.
To see what version you have do:
python3 -m pip show docutils
On Windows the required version was 0.18.1 to build PDF docs (pip install docutils=0.18.1), however on other systems lower versions were fine.
Editing the documentation
-------------------------
Within this `src` folder update the associated `.rst` files which are in restructured text format. These files represent the corresponding document pages.
Some notes on syntax
~~~~~~~~~~~~~~~~~~~~
- Use ``for inline code`` or ``computer/technical terminology``
- Use tab indented code for code blocks with, e.g. .. code-block:: bash
- For device names use :title:`deviceName` , e.g. :title:`pdfwrite`
- For headers underline text with ==== for h1 level, ---- for h2, ~~~~ for h3 & """" for h4
For full details on RST syntax, see: https://www.sphinx-doc.org/en/master/usage/restructuredtext/
Building HTML documentation
---------------------------
From the `doc` location run:
sphinx-build -b html src build
This then creates the HTML documentation within `doc/build` for your review, you can then run `build/index.html` to check out the results.
Building PDF documentation
--------------------------
Ensure that `pdflatex` is on your PATH, test with:
pdflatex --help
Then create the latex build from the `doc` location:
sphinx-build -b latex src build/latex
Once done do:
cd build/latex
make
If there any warnings then hit return to pass through them to continue building ( also decide if you need to fix them or not ).
Now you should have Ghostscript.pdf ready within `build/latex`.
Move the Ghostscript.pdf file into the root of "doc" and replace the existing PDF as required.
Updating the documentation
--------------------------
- Make your edits as required in the relevant RST files ( see above: Editing the documentation )
- Test locally by building and running in local browser ( see above "Building HTML documentation" )
- Ensure to update the version of Ghostscript cited in `conf.py` line 52 ( e.g. release = "10.0.0" )
- Ensure that `News.html` reflects the latest release and has any further "news"
- Once changes are pushed to golden master then readthedocs.io should pick up the changes, build & deploy the docs!
- Visit ghostscript.readthedocs.io once built and deployed to check
---
For more see: Using Sphinx (https://www.sphinx-doc.org/en/master/usage/index.html)
|