build: 🔧 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
This commit is contained in:
Sebin Nyshkim 2025-07-27 16:27:30 +02:00
parent b32d029675
commit a2e33f68b6
Signed by: SebinNyshkim
SSH key fingerprint: SHA256:LG1WHMySL/4iW/Yci+0eHgbf0te5beRiLlmyoY8E5D0

View file

@ -36,7 +36,7 @@ const urlFormat = ({ src, width, format }) => {
return src; return src;
}; };
const MARKDOWNIT_OPTIONS = { html: true, linkify: true, typographer: true }; const MARKDOWNIT_OPTIONS = { html: true, linkify: false, typographer: true };
const ELEVENTY_IMAGE_DEFAULTS = { const ELEVENTY_IMAGE_DEFAULTS = {
formats: ['webp', 'auto'], formats: ['webp', 'auto'],
urlPath: '/img/', urlPath: '/img/',