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)); }