1
0
Fork 0
knot/doc/ext/ignore_panels.py
Daniel Baumann 70063ca008
Adding upstream version 3.4.6.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-21 13:47:52 +02:00

18 lines
324 B
Python

from docutils.parsers.rst import Directive
class IgnorePanels(Directive):
has_content = True
def run(self):
return list()
def setup(app):
app.add_directive("panels", IgnorePanels)
return {
'version': '0.1',
'parallel_read_safe': True,
'parallel_write_safe': True,
}