`Sphinx.add_node()` now takes optional visitor methods for the HTML,

LaTeX and text translators; this prevents having to manually patch
the classes.
This commit is contained in:
Georg Brandl
2008-08-05 10:25:40 +00:00
parent 432115123e
commit b7b483d01f
3 changed files with 46 additions and 3 deletions

View File

@@ -26,7 +26,11 @@ New features added
* The HTML builders have two additional attributes now that can be used
to disable the anchor-link creation after headlines and definition
links. EXPERIMENTAL
links.
* ``Sphinx.add_node()`` now takes optional visitor methods for the HTML,
LaTeX and text translators; this prevents having to manually patch
the classes.
* sphinx.doc.autodoc has a new event ``autodoc-process-signature`` that
allows tuning function signature introspection.