[FIX] Fix tags output in :post task

This commit is contained in:
G. Bodenschatz 2013-08-15 22:20:36 +02:00
parent 46f4a2682d
commit af9c45d973

View file

@ -65,7 +65,7 @@ task :post do
post.puts "title: \"#{title.gsub(/-/,' ')}\""
post.puts 'description: ""'
post.puts "category: "
post.puts "tags: []"
post.puts "tags: #{tags}"
post.puts "---"
post.puts "{% include JB/setup %}"
end