mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Fix #2565: The descriptions of objects generated by `sphinx.ext.autosummary` overflow lines at LaTeX writer
This commit is contained in:
1
CHANGES
1
CHANGES
@@ -62,6 +62,7 @@ Bugs fixed
|
|||||||
* #2518: `intersphinx_mapping` disallows non alphanumeric keys
|
* #2518: `intersphinx_mapping` disallows non alphanumeric keys
|
||||||
* #2558: unpack error on devhelp builder
|
* #2558: unpack error on devhelp builder
|
||||||
* #2561: Info builder crashes when a footnote contains a link
|
* #2561: Info builder crashes when a footnote contains a link
|
||||||
|
* #2565: The descriptions of objects generated by ``sphinx.ext.autosummary`` overflow lines at LaTeX writer
|
||||||
|
|
||||||
|
|
||||||
Release 1.4.1 (released Apr 12, 2016)
|
Release 1.4.1 (released Apr 12, 2016)
|
||||||
|
|||||||
@@ -337,7 +337,7 @@ class Autosummary(Directive):
|
|||||||
*items* is a list produced by :meth:`get_items`.
|
*items* is a list produced by :meth:`get_items`.
|
||||||
"""
|
"""
|
||||||
table_spec = addnodes.tabular_col_spec()
|
table_spec = addnodes.tabular_col_spec()
|
||||||
table_spec['spec'] = 'll'
|
table_spec['spec'] = 'p{0.5\linewidth}p{0.5\linewidth}'
|
||||||
|
|
||||||
table = autosummary_table('')
|
table = autosummary_table('')
|
||||||
real_table = nodes.table('', classes=['longtable'])
|
real_table = nodes.table('', classes=['longtable'])
|
||||||
|
|||||||
Reference in New Issue
Block a user