Closes #1018: Fix "container" directive handling in the text builder.

This commit is contained in:
Georg Brandl 2012-10-28 19:01:51 +01:00
parent 2efca93473
commit 0fd6ebce62
2 changed files with 7 additions and 0 deletions

View File

@ -30,6 +30,8 @@ Release 1.2 (in development)
* #1028: Fix line block output in the text builder.
* #1018: Fix "container" directive handling in the text builder.
Release 1.1.3 (Mar 10, 2012)
============================

View File

@ -714,6 +714,11 @@ class TextTranslator(nodes.NodeVisitor):
def depart_inline(self, node):
pass
def visit_container(self, node):
pass
def depart_container(self, node):
pass
def visit_problematic(self, node):
self.add_text('>>')
def depart_problematic(self, node):