added a space in code figcaption title to make it play nicer with RSS or other no CSS views

This commit is contained in:
Brandon Mathis 2011-07-12 08:49:43 -04:00
parent 983dd84a4b
commit 67c5edb2f6
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ module Jekyll
code = file.read
file_type = file.extname
url = "#{context.registers[:site].config['url']}/#{code_dir}/#{@file}"
source = "<figure><figcaption><span>#{file.basename}</span><a href='#{url}'>download</a></figcaption>\n"
source = "<figure><figcaption><span>#{file.basename}</span> <a href='#{url}'>download</a></figcaption>\n"
source += "{% highlight #{file_type} %}\n" + code + "\n{% endhighlight %}</figure>"
partial = Liquid::Template.parse(source)
context.stack do