I fixed this by changing the sytnax_highlighter method to
ruby
defsyntax_highlight(html)
doc = Nokogiri::HTML(html)
doc.search("//pre[@lang]").each do |pre|
pre.replace Albino.colorize(pre.text.rstrip, pre[:lang])
end
doc.css('body').inner_html.to_s
end
I fixed this by changing the sytnax_highlighter method to