mirror of
https://github.com/Icinga/icinga2.git
synced 2025-08-25 03:28:12 +02:00
9 lines
279 B
Python
9 lines
279 B
Python
def doctree_resolved(app, doctree, docname):
|
|
for node in doctree.traverse():
|
|
if (node.astext() == 'inline' and node.parent.tagname == 'desc_signature_line'):
|
|
node.parent.remove(node)
|
|
|
|
|
|
def setup(app):
|
|
app.connect('doctree-resolved', doctree_resolved)
|