From a2e33f68b6c0a7f8a3e25f5bac74fd8bd73d7f82 Mon Sep 17 00:00:00 2001 From: Sebin Nyshkim Date: Sun, 27 Jul 2025 16:27:30 +0200 Subject: [PATCH] build: :wrench: disable linkify in markdown-it Linkify causes a few problems making links out of things that are not supposed to be but match the syntax of a link --- eleventy.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eleventy.config.js b/eleventy.config.js index 052e9c6..79c3a8c 100644 --- a/eleventy.config.js +++ b/eleventy.config.js @@ -36,7 +36,7 @@ const urlFormat = ({ src, width, format }) => { return src; }; -const MARKDOWNIT_OPTIONS = { html: true, linkify: true, typographer: true }; +const MARKDOWNIT_OPTIONS = { html: true, linkify: false, typographer: true }; const ELEVENTY_IMAGE_DEFAULTS = { formats: ['webp', 'auto'], urlPath: '/img/',