From 3e689f7bd6d9f7b7b838ac8b9246f66614fa145a Mon Sep 17 00:00:00 2001 From: Luca Beltrame Date: Sun, 10 May 2015 00:24:09 +0200 Subject: [PATCH] Use feed URLs that are compatible with the ones used by Wordpress --- _plugins/category_feeds.rb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/_plugins/category_feeds.rb b/_plugins/category_feeds.rb index acf5d61..7b09cff 100644 --- a/_plugins/category_feeds.rb +++ b/_plugins/category_feeds.rb @@ -116,7 +116,7 @@ module Jekyll site.static_files << FeedFile.new( site, site.dest, - '', + 'feed', # feed_dir, 'atom.xml', site.site_payload['site']['posts']) @@ -125,7 +125,7 @@ module Jekyll site.site_payload['site']['categories'].each do |category, pages| site.static_files << FeedFile.new( site, site.dest, - File.join(feed_dir, Jekyll::Utils::slugify(category), 'rss'), + File.join(feed_dir, Jekyll::Utils::slugify(category), 'feed'), 'atom.xml', pages, category) @@ -144,15 +144,15 @@ module Jekyll category = nil page_url.split('/').reverse_each do | path_part | if site.site_payload['site']['categories'].has_key? path_part - category = path_part + category = Jekyll::Utils::slugify(path_part) break end end if category - feed_url = URI.escape("/#{feed_dir}/#{category}/atom.xml") + feed_url = URI.escape("/#{feed_dir}/#{category}/feed/atom.xml") else - feed_url = URI.escape("/#{feed_dir}/atom.xml") + feed_url = URI.escape("/feed/atom.xml") end feed_url