From 6ffc12474bce3c4d7b228bd6d22ef702e790fc7d Mon Sep 17 00:00:00 2001 From: Ian Bell Date: Fri, 8 Aug 2025 20:17:52 -0400 Subject: [PATCH] Update mathjax paths and pin version --- Web/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Web/conf.py b/Web/conf.py index 83927485..f15af817 100644 --- a/Web/conf.py +++ b/Web/conf.py @@ -121,10 +121,10 @@ numpydoc_show_class_members = False zfile = Path("MJ.zip") if not zfile.exists(): - urllib.request.urlretrieve("https://github.com/mathjax/MathJax/archive/master.zip", zfile) + urllib.request.urlretrieve("https://github.com/mathjax/MathJax/archive/refs/tags/4.0.0.zip", zfile) with zipfile.ZipFile(zfile) as z: z.extractall(path=Path(__file__).parent / '_static') -mathjax_path = "MathJax-master/es5/tex-mml-chtml.js" +mathjax_path = "MathJax-master/tex-mml-chtml.js" # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates']