Switch pandoc output format to GitHub-flavored Markdown (gfm)

This commit is contained in:
2026-02-09 21:29:32 +01:00
parent 2d411fe9f8
commit 8ca7f4d629
2 changed files with 15 additions and 1 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ def on_page_markdown(markdown: str, page, config, files) -> str | None:
cmd = [
"pandoc",
f"--lua-filter={lua_filter_path}",
"--to", "markdown"
"--to", "gfm"
]
try: