Skip to content

Commit

Permalink
Mark tag-specific feeds as "tag" collection
Browse files Browse the repository at this point in the history
  • Loading branch information
somini committed Apr 28, 2022
1 parent 209a4cc commit e3d9f78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/jekyll-feed/generator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,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

Expand Down

0 comments on commit e3d9f78

Please sign in to comment.