2024-10-06 11:36:54 +00:00
|
|
|
import { EleventyRenderPlugin } from "@11ty/eleventy";
|
|
|
|
import markdownPlugin from "./markdown.js";
|
|
|
|
import rss from "@11ty/eleventy-plugin-rss";
|
|
|
|
import syntaxHighlight from "@11ty/eleventy-plugin-syntaxhighlight";
|
|
|
|
import imagePlugin from "./image.js";
|
|
|
|
import ogImagePlugin from "./og-image.js";
|
2023-02-04 16:27:15 +00:00
|
|
|
|
2024-10-06 11:36:54 +00:00
|
|
|
export default function(eleventyConfig) {
|
2023-02-04 16:27:15 +00:00
|
|
|
eleventyConfig.addPlugin(syntaxHighlight);
|
|
|
|
eleventyConfig.addPlugin(rss);
|
|
|
|
eleventyConfig.addPlugin(markdownPlugin);
|
|
|
|
eleventyConfig.addPlugin(imagePlugin);
|
2023-02-13 13:35:44 +00:00
|
|
|
eleventyConfig.addPlugin(EleventyRenderPlugin);
|
2024-01-02 12:32:41 +00:00
|
|
|
eleventyConfig.addPlugin(ogImagePlugin);
|
2023-02-04 16:27:15 +00:00
|
|
|
}
|