diff options
author | Brandon Mathis <brandon@imathis.com> | 2013-10-12 16:08:59 -0500 |
---|---|---|
committer | Brandon Mathis <brandon@imathis.com> | 2013-10-12 16:08:59 -0500 |
commit | 4fd754a76207c1c55f657891dc7049cf76f5f27e (patch) | |
tree | 95277025fc6b7acd0593ecf0c395090ed7e1ba2b | |
parent | 050c393a4eda8ca4aadffd6869e4b4e85655fe71 (diff) | |
download | my_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.rb | 2 |
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 |