From b9fbcc09ff6d4ee5ce3053ef9f42839f50d41446 Mon Sep 17 00:00:00 2001 From: somini Date: Sun, 1 Nov 2020 21:20:09 +0000 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..14fc9494 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