From 1088d720e2c09a0e46f171befc29fb2a5037deb3 Mon Sep 17 00:00:00 2001 From: Charles Beauville Date: Tue, 7 Nov 2023 17:13:42 +0100 Subject: [PATCH] Fix the rendering of math in baselines docs (#2579) --- baselines/doc/source/conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/baselines/doc/source/conf.py b/baselines/doc/source/conf.py index 7ba9e8c9cc7d..dd43080f299e 100644 --- a/baselines/doc/source/conf.py +++ b/baselines/doc/source/conf.py @@ -141,3 +141,4 @@ # -- Options for MyST config ------------------------------------- # Enable this option to link to headers (`#`, `##`, or `###`) myst_heading_anchors = 3 +myst_enable_extensions = ["dollarmath"]