mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Merge branch 'stable'
This commit is contained in:
commit
984874fc20
2
CHANGES
2
CHANGES
@ -183,6 +183,8 @@ Bugs fixed
|
||||
* #2931: code-block directive with same :caption: causes warning of duplicate
|
||||
target. Now `code-block` and `literalinclude` does not define hyperlink
|
||||
target using its caption automatially.
|
||||
* #2962: latex: missing label of longtable
|
||||
* #2968: autodoc: show-inheritance option breaks docstrings
|
||||
|
||||
Release 1.4.6 (released Aug 20, 2016)
|
||||
=====================================
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1025,6 +1025,8 @@ class LaTeXTranslator(nodes.NodeVisitor):
|
||||
self.body.append('}')
|
||||
for id in self.pop_hyperlink_ids('table'):
|
||||
self.body.append(self.hypertarget(id, anchor=False))
|
||||
if node['ids']:
|
||||
self.body.append(self.hypertarget(node['ids'][0], anchor=False))
|
||||
self.body.append(u'\\\\\n')
|
||||
if self.table.longtable:
|
||||
self.body.append('\\hline\n')
|
||||
|
Loading…
Reference in New Issue
Block a user