From ce22b171f52066725bb470bd5ae88a51b5c7c847 Mon Sep 17 00:00:00 2001 From: Jan Sroka Date: Wed, 8 Jul 2026 21:59:21 +0200 Subject: [PATCH] chore: remove dead whitelist config from _config.yml The `whitelist:` block only has an effect under `--safe` / the github-pages gem. This site is built with `bundle exec jekyll build` in CI (github-pages gem is commented out in the Gemfile), so the whitelist was inert and wrongly implied a plugin restriction that does not apply. Removed it and corrected the neighbouring `plugins:` comment. Verified: config parses, site builds, and all three plugins still emit their output (feed.xml, sitemap.xml, and the redirect-from stub). Co-Authored-By: Claude Opus 4.8 (1M context) --- _config.yml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/_config.yml b/_config.yml index cc39165..8e1a2ec 100644 --- a/_config.yml +++ b/_config.yml @@ -32,19 +32,14 @@ url: "https://www.inoeg.de" # the base hostname & protocol for your site, e.g. h # override this via the `og_image` front-matter key. og_image_default: "" -# Specify used plugins here and in the Gemfile to ensure full flexibility. -# Note that github pages only supports plugins that are specified in _config.yml +# Plugins. The site is built with `bundle exec jekyll build` in CI (not the +# github-pages gem), so it is NOT restricted to the GitHub Pages plugin +# allowlist — any Jekyll plugin listed here and in the Gemfile works. plugins: - jekyll-feed - jekyll-redirect-from - jekyll-sitemap -# List the same plugins again to mimic GitHub Pages with --safe -whitelist: - - jekyll-feed - - jekyll-redirect-from - - jekyll-sitemap - # Exclude from processing. # The following items will not be processed, by default. # Any item listed under the `exclude:` key here will be automatically added to