blob: 5ec9fb64dbf2d336798f91d7a026b19c1d832d61 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001.. _documenting-index:
2
3######################
4 Documenting Python
5######################
6
7
8The Python language has a substantial body of documentation, much of it
9contributed by various authors. The markup used for the Python documentation is
10`reStructuredText`_, developed by the `docutils`_ project, amended by custom
Benjamin Petersonf608c612008-11-16 18:33:53 +000011directives and using a toolset named `Sphinx`_ to postprocess the HTML output.
Georg Brandl116aa622007-08-15 14:28:22 +000012
13This document describes the style guide for our documentation, the custom
14reStructuredText markup introduced to support Python documentation and how it
15should be used, as well as the Sphinx build system.
16
17.. _reStructuredText: http://docutils.sf.net/rst.html
18.. _docutils: http://docutils.sf.net/
Benjamin Petersonf608c612008-11-16 18:33:53 +000019.. _Sphinx: http://sphinx.pocoo.org/
Georg Brandl116aa622007-08-15 14:28:22 +000020
21If you're interested in contributing to Python's documentation, there's no need
22to write reStructuredText if you're not so inclined; plain text contributions
23are more than welcome as well.
24
25.. toctree::
26
27 intro.rst
28 style.rst
29 rest.rst
30 markup.rst
Georg Brandl57e3b682007-08-31 08:07:45 +000031 fromlatex.rst