Module: Bunto::Converters::Markdown::RedcarpetParser::WithRouge

Defined in:
lib/bunto/converters/markdown/redcarpet_parser.rb

Instance Method Summary collapse

Instance Method Details

#block_code(code, lang) ⇒ Object



48
49
50
51
52
53
54
# File 'lib/bunto/converters/markdown/redcarpet_parser.rb', line 48

def block_code(code, lang)
  code = "<pre>#{super}</pre>"

  output = "<div class=\"highlight\">"
  output << add_code_tags(code, lang)
  output << "</div>"
end