mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Closes #1018: Fix "container" directive handling in the text builder.
This commit is contained in:
parent
2efca93473
commit
0fd6ebce62
2
CHANGES
2
CHANGES
@ -30,6 +30,8 @@ Release 1.2 (in development)
|
|||||||
|
|
||||||
* #1028: Fix line block output in the text builder.
|
* #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)
|
Release 1.1.3 (Mar 10, 2012)
|
||||||
============================
|
============================
|
||||||
|
@ -714,6 +714,11 @@ class TextTranslator(nodes.NodeVisitor):
|
|||||||
def depart_inline(self, node):
|
def depart_inline(self, node):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
def visit_container(self, node):
|
||||||
|
pass
|
||||||
|
def depart_container(self, node):
|
||||||
|
pass
|
||||||
|
|
||||||
def visit_problematic(self, node):
|
def visit_problematic(self, node):
|
||||||
self.add_text('>>')
|
self.add_text('>>')
|
||||||
def depart_problematic(self, node):
|
def depart_problematic(self, node):
|
||||||
|
Loading…
Reference in New Issue
Block a user