summaryrefslogtreecommitdiff
path: root/doc/ext/appapi.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-02-21 11:50:08 +0100
committerGeorg Brandl <georg@python.org>2010-02-21 11:50:08 +0100
commit7429ae935ec47c56c95998a8537236d4c1da7a2b (patch)
tree898390a615563269b7b8a56f3026b0e6de47f9a4 /doc/ext/appapi.rst
parentcdb65275eef02c7c3d248fa1316ddf8db1d43d0a (diff)
downloadsphinx-7429ae935ec47c56c95998a8537236d4c1da7a2b.tar.gz
Add manual page writer.
Diffstat (limited to 'doc/ext/appapi.rst')
-rw-r--r--doc/ext/appapi.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/ext/appapi.rst b/doc/ext/appapi.rst
index a643a478..8df028e1 100644
--- a/doc/ext/appapi.rst
+++ b/doc/ext/appapi.rst
@@ -61,11 +61,11 @@ the following public API:
Register a Docutils node class. This is necessary for Docutils internals.
It may also be used in the future to validate nodes in the parsed documents.
- Node visitor functions for the Sphinx HTML, LaTeX and text writers can be
- given as keyword arguments: the keyword must be one or more of ``'html'``,
- ``'latex'``, ``'text'``, the value a 2-tuple of ``(visit, depart)`` methods.
- ``depart`` can be ``None`` if the ``visit`` function raises
- :exc:`docutils.nodes.SkipNode`. Example:
+ Node visitor functions for the Sphinx HTML, LaTeX, text and manpage writers
+ can be given as keyword arguments: the keyword must be one or more of
+ ``'html'``, ``'latex'``, ``'text'``, ``'man'``, the value a 2-tuple of
+ ``(visit, depart)`` methods. ``depart`` can be ``None`` if the ``visit``
+ function raises :exc:`docutils.nodes.SkipNode`. Example:
.. code-block:: python