1
0
Fork 0

Simple modifications to the category_feed plugins

This commit is contained in:
Luca Beltrame 2015-05-09 22:23:12 +02:00
parent f615dcc711
commit 6f5b35f191

View file

@ -47,6 +47,14 @@ module Jekyll
true
end
def header()
formatted = Jekyll::Utils::slugify(@category)
return "---\n"\
"permalink: /#{@dir}/#{@formatted}/\n"\
"layout: null\n"\
"---"
end
# Creates our feed using the Atom library.
def createFeed
feed = Atom::Feed.new self.url
@ -108,7 +116,8 @@ module Jekyll
site.static_files << FeedFile.new(
site,
site.dest,
feed_dir,
'',
# feed_dir,
'atom.xml',
site.site_payload['site']['posts'])
@ -116,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, category),
File.join(feed_dir, Jekyll::Utils::slugify(category), 'rss'),
'atom.xml',
pages,
category)