1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
From: Christian Bayle <bayle@debian.org>
Date: Sat, 26 Apr 2025 23:48:25 +0200
Subject: Fix plantuml_output_format
Forwarded: not-needed
---
docs/conf.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/conf.py b/docs/conf.py
index 28ee8b9..c05e206 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -298,7 +298,7 @@ local_plantuml_path = os.path.join(
plantuml = f"java -Djava.awt.headless=true -jar {local_plantuml_path}"
# plantuml_output_format = 'png'
-plantuml_output_format = "svg_img"
+plantuml_output_format = "svg"
# -- Options for Needs extension ---------------------------------------
|