Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | .. _documenting-index: |
| 2 | |
| 3 | ###################### |
| 4 | Documenting Python |
| 5 | ###################### |
| 6 | |
| 7 | |
| 8 | The Python language has a substantial body of documentation, much of it |
| 9 | contributed by various authors. The markup used for the Python documentation is |
| 10 | `reStructuredText`_, developed by the `docutils`_ project, amended by custom |
Benjamin Peterson | f608c61 | 2008-11-16 18:33:53 +0000 | [diff] [blame] | 11 | directives and using a toolset named `Sphinx`_ to postprocess the HTML output. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 12 | |
Georg Brandl | c62efa8 | 2010-07-11 10:41:07 +0000 | [diff] [blame] | 13 | This document describes the style guide for our documentation as well as the |
| 14 | custom reStructuredText markup introduced by Sphinx to support Python |
| 15 | documentation and how it should be used. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 16 | |
| 17 | .. _reStructuredText: http://docutils.sf.net/rst.html |
| 18 | .. _docutils: http://docutils.sf.net/ |
Benjamin Peterson | f608c61 | 2008-11-16 18:33:53 +0000 | [diff] [blame] | 19 | .. _Sphinx: http://sphinx.pocoo.org/ |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 20 | |
Georg Brandl | 9b9e0a1 | 2010-04-22 23:20:47 +0000 | [diff] [blame] | 21 | .. note:: |
| 22 | |
| 23 | If you're interested in contributing to Python's documentation, there's no |
| 24 | need to write reStructuredText if you're not so inclined; plain text |
| 25 | contributions are more than welcome as well. Send an e-mail to |
| 26 | docs@python.org or open an issue on the :ref:`tracker <reporting-bugs>`. |
| 27 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 28 | |
| 29 | .. toctree:: |
Benjamin Peterson | 5879d41 | 2009-03-30 14:51:56 +0000 | [diff] [blame] | 30 | :numbered: |
Georg Brandl | 9b9e0a1 | 2010-04-22 23:20:47 +0000 | [diff] [blame] | 31 | :maxdepth: 1 |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 32 | |
| 33 | intro.rst |
| 34 | style.rst |
| 35 | rest.rst |
| 36 | markup.rst |
Georg Brandl | 57e3b68 | 2007-08-31 08:07:45 +0000 | [diff] [blame] | 37 | fromlatex.rst |
Georg Brandl | c62efa8 | 2010-07-11 10:41:07 +0000 | [diff] [blame] | 38 | building.rst |