mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Add .. rubric:: to the list of special cased nodes for gettext.
The ``.. rubric:: Title`` does not get extracted in all places without, due to the missing node.source field, quite like the title fields.
This commit is contained in:
parent
be2f018150
commit
ea17129ecd
@ -58,7 +58,7 @@ def extract_messages(doctree):
|
||||
# this issue was filed to Docutils tracker:
|
||||
# sf.net/tracker/?func=detail&aid=3599485&group_id=38414&atid=422032
|
||||
# sourceforge.net/p/docutils/patches/108/
|
||||
if isinstance(node, (nodes.caption, nodes.title)) and not node.source:
|
||||
if isinstance(node, (nodes.caption, nodes.title, nodes.rubric)) and not node.source:
|
||||
node.source = node.parent.source
|
||||
node.line = 0 #need fix docutils to get `node.line`
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user