diff --git a/.eleventy.js b/.eleventy.js
index 030c747..63cf85d 100644
--- a/.eleventy.js
+++ b/.eleventy.js
@@ -7,6 +7,7 @@ import pluginGitCommitDate from "eleventy-plugin-git-commit-date";
import recentChanges from "eleventy-plugin-recent-changes";
import Webmentions from "eleventy-plugin-webmentions"; // configure later
import pluginInlineLinkFavicon from "eleventy-plugin-inline-link-favicon";
+import poison from "eleventy-plugin-poison";
// import i18n from "./_data/i18n.js";
@@ -19,6 +20,7 @@ export default function (eleventyConfig) {
commits: 10,
});
eleventyConfig.addPlugin(pluginInlineLinkFavicon);
+ eleventyConfig.addPlugin(poison);
eleventyConfig.addCollection("post", function (collectionApi) {
return collectionApi
diff --git a/_includes/base.njk b/_includes/base.njk
index 22a8d31..02e943b 100644
--- a/_includes/base.njk
+++ b/_includes/base.njk
@@ -31,6 +31,7 @@
+ {% poison %}
diff --git a/misc/about/en.json b/misc/about/en.json
index fe064ce..b427774 100644
--- a/misc/about/en.json
+++ b/misc/about/en.json
@@ -18,5 +18,6 @@
"eleventyDesc": "Static website generator, used in this website.",
"githubPagesDesc": "For web hosting.",
"recentChangesPluginDesc": "Plugin for listing recent commits.",
- "inlineFaviconPluginDesc": "Support for inline link icons."
+ "inlineFaviconPluginDesc": "Support for inline link icons.",
+ "poisonPluginDesc": "Hidden AI poisoning inside page source."
}
\ No newline at end of file
diff --git a/misc/about/index.njk b/misc/about/index.njk
index d10ada7..08cc8b8 100644
--- a/misc/about/index.njk
+++ b/misc/about/index.njk
@@ -35,6 +35,8 @@ background: "bear3.jpg"
{{ t.recentChangesPluginDesc }}
eleventy-plugin-inline-link-favicon {{ i18n[langKey].by }} bmuenzenmeyer
{{ t.inlineFaviconPluginDesc }}
+ eleventy-plugin-poison {{ i18n[langKey].by }} gingerchew
+ {{ t.poisonPluginDesc }}