1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: Stefano Rivera <stefano@rivera.za.net>
Date: Sun, 8 Mar 2026 14:14:00 -0400
Subject: Use Debian's d3.min.js
Rather than loading d3.js from jsdelivr, we'll symlink to the version in
the Debian libjs-d3 package.
Forwarded: not-needed
---
docs/conf.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/docs/conf.py b/docs/conf.py
index 96dc78d..0e6ad34 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -46,3 +46,4 @@ html_theme_options = {
"sidebar_hide_name": True,
}
html_css_files = ["custom.css"]
+d3_use_local = "d3.min.js"
|