aboutsummaryrefslogtreecommitdiff
path: root/.eleventy.js
diff options
context:
space:
mode:
authorMarc Coquand <marcc0000@pm.me>2023-09-10 07:49:49 -0300
committerMarc Coquand <marcc0000@pm.me>2023-09-10 07:49:49 -0300
commit30a031edc5c5f161ba487822a4adb3c60a9864b1 (patch)
treea9c64d6d4059029b4554fba47d6d19e04728c1a2 /.eleventy.js
parent22a335754035ae9ee8d1bbdfc65ad83f8bbe834f (diff)
downloadmccd.space-30a031edc5c5f161ba487822a4adb3c60a9864b1.tar.gz
mccd.space-30a031edc5c5f161ba487822a4adb3c60a9864b1.tar.bz2
mccd.space-30a031edc5c5f161ba487822a4adb3c60a9864b1.zip
Initial commit
Diffstat (limited to '')
-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
+ }
+ });
+};