From 4fd754a76207c1c55f657891dc7049cf76f5f27e Mon Sep 17 00:00:00 2001 From: Brandon Mathis Date: Sat, 12 Oct 2013 16:08:59 -0500 Subject: Removed space to fix HAML compatibility on include_code. --- plugins/include_code.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 = "
#{title} download
\n" - source += " #{highlight(code, @filetype)}
" + source += "#{highlight(code, @filetype)}" safe_wrap(source) end end -- cgit v1.2.1