From 08e235cc2907f4591bbd97d0da8f0fc7030a5169 Mon Sep 17 00:00:00 2001 From: Richard Darst Date: Mon, 12 Aug 2024 10:23:35 +0300 Subject: [PATCH] content/conf: Add colon_fences MyST options --- content/conf.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/content/conf.py b/content/conf.py index 6c265b4..9359ce0 100644 --- a/content/conf.py +++ b/content/conf.py @@ -54,6 +54,11 @@ #nb_execution_mode = "force" nb_execution_mode = "cache" +# https://myst-parser.readthedocs.io/en/latest/syntax/optional.html +myst_enable_extensions = [ + "colon_fence", +] + # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates']