Browse Source

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

unreleased_contents
Brandon Mathis 13 years ago
parent
commit
67c5edb2f6
  1. 2
      .themes/classic/plugins/include_code.rb

2
.themes/classic/plugins/include_code.rb

@ -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

Loading…
Cancel
Save