From 604f01f73f809fec057450dc43b9671984dd41be Mon Sep 17 00:00:00 2001 From: =?utf8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Wed, 28 Jun 2023 15:48:24 +0200 Subject: [PATCH] m.code: make it work with newer docutils. Not sure when this got broken but omitting the option no longer works. --- plugins/m/code.py | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/m/code.py b/plugins/m/code.py index ab47fa81..08fd6acb 100644 --- a/plugins/m/code.py +++ b/plugins/m/code.py @@ -171,6 +171,7 @@ class Include(docutils.parsers.rst.directives.misc.Include): 'filters': directives.unchanged, 'hl-lines': directives.unchanged } + has_content = False def run(self): """ -- 2.30.2