aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrandon Mathis <brandon@imathis.com>2013-10-12 16:08:59 -0500
committerBrandon Mathis <brandon@imathis.com>2013-10-12 16:08:59 -0500
commit4fd754a76207c1c55f657891dc7049cf76f5f27e (patch)
tree95277025fc6b7acd0593ecf0c395090ed7e1ba2b
parent050c393a4eda8ca4aadffd6869e4b4e85655fe71 (diff)
downloadmy_new_personal_website-4fd754a76207c1c55f657891dc7049cf76f5f27e.tar.xz
my_new_personal_website-4fd754a76207c1c55f657891dc7049cf76f5f27e.zip
Removed space to fix HAML compatibility on include_code.
-rw-r--r--plugins/include_code.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/include_code.rb b/plugins/include_code.rb
index 220466b6..41f30337 100644
--- a/plugins/include_code.rb
+++ b/plugins/include_code.rb
@@ -62,7 +62,7 @@ module Jekyll
title = @title ? "#{@title} (#{file.basename})" : file.basename
url = "/#{code_dir}/#{@file}"
source = "<figure class='code'><figcaption><span>#{title}</span> <a href='#{url}'>download</a></figcaption>\n"
- source += " #{highlight(code, @filetype)}</figure>"
+ source += "#{highlight(code, @filetype)}</figure>"
safe_wrap(source)
end
end