From 4826b55af7cfdf61ef3890f4a46c712ccf4700ca Mon Sep 17 00:00:00 2001 From: somini Date: Sun, 15 Aug 2021 11:59:38 +0100 Subject: [PATCH] Mark tag-specific feeds as "tag" collection --- lib/jekyll-feed/generator.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/jekyll-feed/generator.rb b/lib/jekyll-feed/generator.rb index d67f22c0..2703c737 100644 --- a/lib/jekyll-feed/generator.rb +++ b/lib/jekyll-feed/generator.rb @@ -89,7 +89,7 @@ def generate_tag_feed(tags_pool, tags_path) path = "#{tags_path}#{tag_slug}.xml" next if file_exists?(path) - @site.pages << make_page(path, :tags => tag) + @site.pages << make_page(path, :collection => "tag", :tags => tag) end end