From 215e5fca89e1618dfecae85b113aa55c24ca828d Mon Sep 17 00:00:00 2001 From: Sebin Nyshkim Date: Fri, 4 Jul 2025 18:28:30 +0200 Subject: [PATCH] fix: :wrench: return content unaltered if transform condition not met --- eleventy.config.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/eleventy.config.js b/eleventy.config.js index a77fe1b..41a52dc 100644 --- a/eleventy.config.js +++ b/eleventy.config.js @@ -68,6 +68,8 @@ export default async function (eleventyConfig) { ] }); } + + return content; }); eleventyConfig.addFilter('getOgImage', getOgImage); @@ -78,7 +80,7 @@ export default async function (eleventyConfig) { }); eleventyConfig.addPlugin(eleventyPluginNavigation); eleventyConfig.addPlugin(eleventyImagePlugin, IMAGE_TRANSFORM_OPTS); - + eleventyConfig.setLibrary('md', markdownIt(MARKDOWNIT_OPTIONS)); }