Prevent URLs from becoming links by markdownify.

This commit is contained in:
2025-11-19 20:35:56 -07:00
parent 20f874a586
commit 6123692906

View File

@@ -12,6 +12,9 @@ paginate = 99999
# Allow direct HTML. # Allow direct HTML.
markup.goldmark.renderer.unsafe = true markup.goldmark.renderer.unsafe = true
# Prevent URLs from becoming links which open in the same tab.
markup.goldmark.extensions.linkify = false
#[markup.tableOfContents] #[markup.tableOfContents]
# startLevel = 2 # startLevel = 2
# endLevel = 5 # endLevel = 5