replace \s with space

This commit is contained in:
Daniel Grieve 2013-03-16 19:20:54 +00:00
parent 92d9c4301b
commit 6c5d001986
1 changed files with 2 additions and 2 deletions

View File

@ -19,9 +19,9 @@ module Jekyll
def gist_script_tag(gist_id, filename=nil)
if filename.empty?
"<script src=\"https://gist.github.com/#{gist_id}.js\">\s</script>"
"<script src=\"https://gist.github.com/#{gist_id}.js\"> </script>"
else
"<script src=\"https://gist.github.com/#{gist_id}.js?file=#{filename}\">\s</script>"
"<script src=\"https://gist.github.com/#{gist_id}.js?file=#{filename}\"> </script>"
end
end
end