mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Merge pull request #5177 from jfbu/5176_latex_index_special_chars
Fix #5176
This commit is contained in:
commit
d35cb7e202
1
CHANGES
1
CHANGES
@ -45,6 +45,7 @@ Bugs fixed
|
|||||||
sorting
|
sorting
|
||||||
* #5139: autodoc: Enum argument missing if it shares value with another
|
* #5139: autodoc: Enum argument missing if it shares value with another
|
||||||
* #4946: py domain: rtype field could not handle "None" as a type
|
* #4946: py domain: rtype field could not handle "None" as a type
|
||||||
|
* #5176: LaTeX: indexing of terms containing ``@``, ``!``, or ``"`` fails
|
||||||
* #5161: html: crashes if copying static files are failed
|
* #5161: html: crashes if copying static files are failed
|
||||||
* #5167: autodoc: Fix formatting type annotations for tuples with more than two
|
* #5167: autodoc: Fix formatting type annotations for tuples with more than two
|
||||||
arguments
|
arguments
|
||||||
|
@ -1963,6 +1963,9 @@ class LaTeXTranslator(nodes.NodeVisitor):
|
|||||||
value = self.encode(value)
|
value = self.encode(value)
|
||||||
value = value.replace(r'\{', r'{\sphinxleftcurlybrace}')
|
value = value.replace(r'\{', r'{\sphinxleftcurlybrace}')
|
||||||
value = value.replace(r'\}', r'{\sphinxrightcurlybrace}')
|
value = value.replace(r'\}', r'{\sphinxrightcurlybrace}')
|
||||||
|
value = value.replace('"', '""')
|
||||||
|
value = value.replace('@', '"@')
|
||||||
|
value = value.replace('!', '"!')
|
||||||
return value
|
return value
|
||||||
|
|
||||||
if not node.get('inline', True):
|
if not node.get('inline', True):
|
||||||
|
Loading…
Reference in New Issue
Block a user