From 51bf16368ac54b6fdf7f10a4f81e50f8556c60a2 Mon Sep 17 00:00:00 2001 From: James Wilcox Date: Wed, 8 Jan 2025 20:42:08 -0800 Subject: [PATCH] Fix missing dict key in arithmatex docs (#2560) --- docs/src/markdown/extensions/arithmatex.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/markdown/extensions/arithmatex.md b/docs/src/markdown/extensions/arithmatex.md index 96f19b3ab..5f6992c31 100644 --- a/docs/src/markdown/extensions/arithmatex.md +++ b/docs/src/markdown/extensions/arithmatex.md @@ -347,7 +347,7 @@ extensions = [ extension_config = { "pymdownx.superfences": { "custom_fences": [ - {"name": "math", "class": "arithmatex", arithmatex.arithmatex_fenced_format(which="generic")} + {"name": "math", "class": "arithmatex", "format": arithmatex.arithmatex_fenced_format(which="generic")} ] } }