mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
figure-caption work-around set int or None to node.line instead of empty string.
This commit is contained in:
parent
9f8f93e5e1
commit
f363ef400e
@ -57,7 +57,7 @@ def extract_messages(doctree):
|
||||
# https://sourceforge.net/tracker/?func=detail&aid=3599485&group_id=38414&atid=422032
|
||||
if isinstance(node, nodes.caption) and not node.source:
|
||||
node.source = node.parent.source
|
||||
node.line = '' #need fix docutils to get `node.line`
|
||||
node.line = 0 #need fix docutils to get `node.line`
|
||||
|
||||
if not node.source:
|
||||
continue # built-in message
|
||||
|
Loading…
Reference in New Issue
Block a user