blob: 939b25c462bd042f5c2af8a90fd35511fb915d75 (
plain)
1
2
3
4
5
6
7
8
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
}
});
};
|