tent.io/lib/markdown_html.rb
Jonathan Rudenberg 72067ba038 Init
2012-08-21 23:15:29 -04:00

9 lines
234 B
Ruby

require 'pygments.rb'
RubyPython.start python_exe: 'python2.6' if ENV['RACK_ENV'] == 'production'
class MarkdownHTML < Redcarpet::Render::HTML
def block_code(code, language)
Pygments.highlight(code, lexer: language)
end
end