From af9c45d973f88cd7d9f3e43db2455c67336aacc2 Mon Sep 17 00:00:00 2001 From: "G. Bodenschatz" Date: Thu, 15 Aug 2013 22:20:36 +0200 Subject: [PATCH] [FIX] Fix tags output in :post task --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index b62cfa8..26e901f 100644 --- a/Rakefile +++ b/Rakefile @@ -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