From 6123692906e7feb6a94691602f124c80124c3f3f Mon Sep 17 00:00:00 2001 From: Hyperling Date: Wed, 19 Nov 2025 20:35:56 -0700 Subject: [PATCH] Prevent URLs from becoming links by markdownify. --- hugo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hugo.toml b/hugo.toml index 4837e46..45b73b1 100644 --- a/hugo.toml +++ b/hugo.toml @@ -12,6 +12,9 @@ paginate = 99999 # Allow direct HTML. markup.goldmark.renderer.unsafe = true +# Prevent URLs from becoming links which open in the same tab. +markup.goldmark.extensions.linkify = false + #[markup.tableOfContents] # startLevel = 2 # endLevel = 5