diff options
author | Georg Brandl <georg@python.org> | 2007-12-06 02:00:01 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-12-06 02:00:01 +0000 |
commit | c5580ebd9115dc8dd1e76a8ac25cea95bc3db2ce (patch) | |
tree | 8faed5717da5e1fb2cb763906f57f53a603176c4 /sphinx/htmlwriter.py | |
parent | 3d74adea2595f35994093091410bc8607bd49f74 (diff) | |
download | sphinx-git-c5580ebd9115dc8dd1e76a8ac25cea95bc3db2ce.tar.gz |
Continue work on the PDF builder. The documents now build and run through LaTeX.
Some elements are still missing though.
Diffstat (limited to 'sphinx/htmlwriter.py')
-rw-r--r-- | sphinx/htmlwriter.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sphinx/htmlwriter.py b/sphinx/htmlwriter.py index 73ee4e94c..7e220be11 100644 --- a/sphinx/htmlwriter.py +++ b/sphinx/htmlwriter.py @@ -63,6 +63,12 @@ def translator_class(config, buildername): def depart_desc_classname(self, node): self.body.append('</tt>') + def visit_desc_type(self, node): + # return type of C functions -- nothing to do here + pass + def depart_desc_type(self, node): + pass + def visit_desc_name(self, node): self.body.append(self.starttag(node, 'tt', '', CLASS='descname')) def depart_desc_name(self, node): |