removed incorrect usage of gsub! which was returning nil if the substitution was not found. Now strips leading and trailing whitespace

main
Brandon Mathis 14 years ago
parent 3587076aed
commit ae51fe859e

@ -67,7 +67,7 @@ module Jekyll
if @filetype if @filetype
source += "{% highlight #{@filetype} %}\n" + code + "\n{% endhighlight %}</figure></div>" source += "{% highlight #{@filetype} %}\n" + code + "\n{% endhighlight %}</figure></div>"
else else
source += "<pre><code>" + code.gsub!(/</,'&lt;') + "</code></pre></figure></div>" source += "<pre><code>" + code.lstrip.rstrip.gsub(/</,'&lt;') + "</code></pre></figure></div>"
end end
partial = Liquid::Template.parse(source) partial = Liquid::Template.parse(source)
context.stack do context.stack do

Loading…
Cancel
Save