summaryrefslogtreecommitdiffstats
path: root/doc/ext/ignore_panels.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 19:05:44 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 19:05:44 +0000
commitb045529c40c83601909dca7b76a53498e9a70f33 (patch)
tree88371572105933fd950676c07b3a12163a0c9de0 /doc/ext/ignore_panels.py
parentInitial commit. (diff)
downloadknot-b045529c40c83601909dca7b76a53498e9a70f33.tar.xz
knot-b045529c40c83601909dca7b76a53498e9a70f33.zip
Adding upstream version 3.3.4.upstream/3.3.4
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'doc/ext/ignore_panels.py')
-rw-r--r--doc/ext/ignore_panels.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/doc/ext/ignore_panels.py b/doc/ext/ignore_panels.py
new file mode 100644
index 0000000..ce59513
--- /dev/null
+++ b/doc/ext/ignore_panels.py
@@ -0,0 +1,18 @@
+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,
+ }