From 4e958714dd6839e917a569925a8449ffb8bcabb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Tue, 22 Sep 2026 10:44:31 +0200 Subject: [PATCH] Update Pandoc output format to 'gfm+attributes' in MkDocs hook --- mkdocs/hooks/pandoc-to-mkdocs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkdocs/hooks/pandoc-to-mkdocs.py b/mkdocs/hooks/pandoc-to-mkdocs.py index 60cbc0e..c25f53d 100644 --- a/mkdocs/hooks/pandoc-to-mkdocs.py +++ b/mkdocs/hooks/pandoc-to-mkdocs.py @@ -10,7 +10,7 @@ def on_page_markdown(markdown: str, page, config, files) -> str | None: cmd = [ "pandoc", f"--lua-filter={lua_filter_path}", - "--to", "gfm" + "--to", "gfm+attributes" ] try: