From b2eaab3bd34ed0209de96c569f3a9f66c827fd9a Mon Sep 17 00:00:00 2001 From: Martin Donath Date: Sun, 5 Jul 2026 17:19:45 +0200 Subject: [PATCH] chore: shim for `markdown-exec` not executing Signed-off-by: squidfunk --- python/zensical/config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/zensical/config.py b/python/zensical/config.py index 409269f..ec0bcbd 100644 --- a/python/zensical/config.py +++ b/python/zensical/config.py @@ -678,6 +678,7 @@ def _apply_defaults(config: dict, path: str) -> dict: # Map plugins configuration to Markdown extensions _shim_autorefs(config) + _shim_markdown_exec(config) _shim_mkdocstrings(config, path) _shim_glightbox(config) _shim_macros(config)