mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
merge with 0.6
This commit is contained in:
commit
297ceab686
@ -8,4 +8,4 @@ sphinx/pycode/Grammar.*pickle
|
|||||||
Sphinx.egg-info/
|
Sphinx.egg-info/
|
||||||
doc/_build/
|
doc/_build/
|
||||||
TAGS
|
TAGS
|
||||||
.ropeproject/
|
\.ropeproject/
|
||||||
|
3
CHANGES
3
CHANGES
@ -17,6 +17,9 @@ Release 1.0 (in development)
|
|||||||
Release 0.6.2 (in development)
|
Release 0.6.2 (in development)
|
||||||
==============================
|
==============================
|
||||||
|
|
||||||
|
* #146: Don't fail to generate LaTeX when the user has an active
|
||||||
|
``.docutils`` configuration.
|
||||||
|
|
||||||
* #29: Don't generate visible "-{-}" in option lists in LaTeX.
|
* #29: Don't generate visible "-{-}" in option lists in LaTeX.
|
||||||
|
|
||||||
* Fix cross-reference roles when put into substitutions.
|
* Fix cross-reference roles when put into substitutions.
|
||||||
|
@ -1271,6 +1271,17 @@ class LaTeXTranslator(nodes.NodeVisitor):
|
|||||||
def depart_decoration(self, node):
|
def depart_decoration(self, node):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
# docutils-generated elements that we don't support
|
||||||
|
|
||||||
|
def visit_header(self, node):
|
||||||
|
raise nodes.SkipNode
|
||||||
|
|
||||||
|
def visit_footer(self, node):
|
||||||
|
raise nodes.SkipNode
|
||||||
|
|
||||||
|
def visit_docinfo(self, node):
|
||||||
|
raise nodes.SkipNode
|
||||||
|
|
||||||
# text handling
|
# text handling
|
||||||
|
|
||||||
def encode(self, text):
|
def encode(self, text):
|
||||||
|
Loading…
Reference in New Issue
Block a user