aboutsummaryrefslogtreecommitdiff
path: root/.eleventy.js
diff options
context:
space:
mode:
Diffstat (limited to '.eleventy.js')
-rw-r--r--.eleventy.js9
1 files changed, 9 insertions, 0 deletions
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 <img/>-style XHTML single tags
+ }
+ });
+};