From 0942f20b4170fe82d3613e16487976b094a721e6 Mon Sep 17 00:00:00 2001 From: Winford Date: Wed, 28 Feb 2024 10:39:09 -0800 Subject: [PATCH] Fix missing configuration in `doc/conf.py.in` I missed a configuration option when reworking the recent documentation PRs. This setting is needed to propery render doxygen content in the published html documentation. Signed-off-by: Winford --- doc/conf.py.in | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/conf.py.in b/doc/conf.py.in index 20a0b8ff0..0682befc6 100644 --- a/doc/conf.py.in +++ b/doc/conf.py.in @@ -101,6 +101,7 @@ breathe_domain_by_extension = { breathe_use_project_refids = True myst_heading_anchors = 5 +myst_enable_extensions = ['colon_fence'] # -- Options for HTML output -------------------------------------------------