mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Fix #3328: Could not refer rubric implicitly
This commit is contained in:
parent
bb8dcb5cee
commit
d170862866
1
CHANGES
1
CHANGES
@ -31,6 +31,7 @@ Bugs fixed
|
|||||||
* #3284: Sphinx crashes on parallel build with an extension which raises
|
* #3284: Sphinx crashes on parallel build with an extension which raises
|
||||||
unserializable exception
|
unserializable exception
|
||||||
* #3315: Bibliography crashes on latex build with docclass 'memoir'
|
* #3315: Bibliography crashes on latex build with docclass 'memoir'
|
||||||
|
* #3328: Could not refer rubric implicitly
|
||||||
|
|
||||||
|
|
||||||
Release 1.5.1 (released Dec 13, 2016)
|
Release 1.5.1 (released Dec 13, 2016)
|
||||||
|
@ -566,7 +566,7 @@ class StandardDomain(Domain):
|
|||||||
env.warn_node('duplicate label %s, ' % name + 'other instance '
|
env.warn_node('duplicate label %s, ' % name + 'other instance '
|
||||||
'in ' + env.doc2path(labels[name][0]), node)
|
'in ' + env.doc2path(labels[name][0]), node)
|
||||||
anonlabels[name] = docname, labelid
|
anonlabels[name] = docname, labelid
|
||||||
if node.tagname == 'section':
|
if node.tagname in ('section', 'rubric'):
|
||||||
sectname = clean_astext(node[0]) # node[0] == title node
|
sectname = clean_astext(node[0]) # node[0] == title node
|
||||||
elif self.is_enumerable_node(node):
|
elif self.is_enumerable_node(node):
|
||||||
sectname = self.get_numfig_title(node)
|
sectname = self.get_numfig_title(node)
|
||||||
|
Loading…
Reference in New Issue
Block a user