Remove ".html" from _posts urls in sitemap

This commit is contained in:
Saivann 2013-05-26 13:15:00 -04:00
parent 30a4c5b229
commit 2d439900c3

View file

@ -47,19 +47,19 @@ module Jekyll
Dir.foreach(file1) do |file2| Dir.foreach(file1) do |file2|
next if !/\.html$/.match(file2) next if !/\.html$/.match(file2)
sitemap.puts '<url>' sitemap.puts '<url>'
sitemap.puts ' <loc>http://bitcoin.org/'+file1+'/'+file2+'</loc>' sitemap.puts ' <loc>http://bitcoin.org/'+file1+'/'+file2.gsub('.html','')+'</loc>'
sitemap.puts '</url>' sitemap.puts '</url>'
end end
end end
next if !/\.html$/.match(file1) next if !/\.html$/.match(file1)
sitemap.puts '<url>' sitemap.puts '<url>'
sitemap.puts ' <loc>http://bitcoin.org/'+file1+'</loc>' sitemap.puts ' <loc>http://bitcoin.org/'+file1.gsub('.html','')+'</loc>'
sitemap.puts '</url>' sitemap.puts '</url>'
end end
#Add posts #Add posts
site.posts.each do |post| site.posts.each do |post|
sitemap.puts '<url>' sitemap.puts '<url>'
sitemap.puts ' <loc>http://bitcoin.org'+post.url+'</loc>' sitemap.puts ' <loc>http://bitcoin.org'+post.url.gsub('.html','')+'</loc>'
sitemap.puts '</url>' sitemap.puts '</url>'
end end
#Close sitemap #Close sitemap