mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
#321: Fix link generation in the LaTeX builder -- target names need to be escaped in references as well as definitions.
This commit is contained in:
parent
097810e011
commit
8fc4896801
6
CHANGES
6
CHANGES
@ -1,3 +1,9 @@
|
|||||||
|
Release 0.6.5 (in development)
|
||||||
|
==============================
|
||||||
|
|
||||||
|
* #321: Fix link generation in the LaTeX builder.
|
||||||
|
|
||||||
|
|
||||||
Release 0.6.4 (Jan 12, 2010)
|
Release 0.6.4 (Jan 12, 2010)
|
||||||
============================
|
============================
|
||||||
|
|
||||||
|
@ -1038,13 +1038,15 @@ class LaTeXTranslator(nodes.NodeVisitor):
|
|||||||
self.body.append('\\href{%s}{' % self.encode_uri(uri))
|
self.body.append('\\href{%s}{' % self.encode_uri(uri))
|
||||||
self.context.append('}')
|
self.context.append('}')
|
||||||
elif uri.startswith('#'):
|
elif uri.startswith('#'):
|
||||||
self.body.append('\\hyperlink{%s}{' % uri[1:])
|
# references to labels
|
||||||
|
self.body.append('\\hyperlink{%s}{' % self.idescape(uri[1:]))
|
||||||
self.context.append('}')
|
self.context.append('}')
|
||||||
elif uri.startswith('%'):
|
elif uri.startswith('%'):
|
||||||
|
# references to documents or labels inside documents
|
||||||
hashindex = uri.find('#')
|
hashindex = uri.find('#')
|
||||||
targetname = (hashindex == -1) and '--doc-' + uri[1:] \
|
targetname = (hashindex == -1) and '--doc-' + uri[1:] \
|
||||||
or uri[hashindex+1:]
|
or uri[hashindex+1:]
|
||||||
self.body.append('\\hyperlink{%s}{' % targetname)
|
self.body.append('\\hyperlink{%s}{' % self.idescape(targetname))
|
||||||
self.context.append('}')
|
self.context.append('}')
|
||||||
elif uri.startswith('@token'):
|
elif uri.startswith('@token'):
|
||||||
if self.in_production_list:
|
if self.in_production_list:
|
||||||
|
Loading…
Reference in New Issue
Block a user