From 6c5d001986d7c71c04e60b10d2a6b2dc4b96a2ba Mon Sep 17 00:00:00 2001 From: Daniel Grieve Date: Sat, 16 Mar 2013 19:20:54 +0000 Subject: [PATCH] replace \s with space --- lib/jekyll/tags/gist.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/jekyll/tags/gist.rb b/lib/jekyll/tags/gist.rb index f1603b9e..efeb62c3 100644 --- a/lib/jekyll/tags/gist.rb +++ b/lib/jekyll/tags/gist.rb @@ -19,9 +19,9 @@ module Jekyll def gist_script_tag(gist_id, filename=nil) if filename.empty? - "" + "" else - "" + "" end end end