diff options
author | Melody Horn <melody@boringcactus.com> | 2024-10-20 00:50:13 -0600 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2024-10-20 00:50:13 -0600 |
commit | 20a2b5a243b5e04f8d18963fd8f62e29a1f8cff1 (patch) | |
tree | 581215692655d6c8aad8a52efecb6548d31dec48 /eleventy.config.js | |
parent | 94428eb8b097f201978dbc0e70afe1c04d338082 (diff) | |
download | boringcactus.com-20a2b5a243b5e04f8d18963fd8f62e29a1f8cff1.tar.gz boringcactus.com-20a2b5a243b5e04f8d18963fd8f62e29a1f8cff1.zip |
Diffstat (limited to 'eleventy.config.js')
-rw-r--r-- | eleventy.config.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/eleventy.config.js b/eleventy.config.js index f187c91..3d8999f 100644 --- a/eleventy.config.js +++ b/eleventy.config.js @@ -1,10 +1,13 @@ -import { InputPathToUrlTransformPlugin } from "@11ty/eleventy"; +import { EleventyRenderPlugin, InputPathToUrlTransformPlugin } from "@11ty/eleventy"; import pluginRss from "@11ty/eleventy-plugin-rss"; import syntaxHighlight from "@11ty/eleventy-plugin-syntaxhighlight"; +import pluginWebc from "@11ty/eleventy-plugin-webc"; import anchor from "markdown-it-anchor"; export default function (eleventyConfig) { + eleventyConfig.addPlugin(EleventyRenderPlugin); eleventyConfig.addPlugin(InputPathToUrlTransformPlugin); + eleventyConfig.addPlugin(pluginWebc); eleventyConfig.addPlugin(syntaxHighlight, { errorOnInvalidLanguage: true, |