From 30a031edc5c5f161ba487822a4adb3c60a9864b1 Mon Sep 17 00:00:00 2001 From: Marc Coquand Date: Sun, 10 Sep 2023 07:49:49 -0300 Subject: Initial commit --- .eleventy.js | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .eleventy.js (limited to '.eleventy.js') diff --git a/.eleventy.js b/.eleventy.js new file mode 100644 index 0000000..939b25c --- /dev/null +++ b/.eleventy.js @@ -0,0 +1,9 @@ +const pluginRss = require("@11ty/eleventy-plugin-rss"); + +module.exports = function(eleventyConfig) { + eleventyConfig.addPlugin(pluginRss, { + posthtmlRenderOptions: { + closingSingleTag: "default" // opt-out of -style XHTML single tags + } + }); +}; -- cgit v1.2.3