class Kramdown::Converter::Html

def convert_codespan(el, indent)

def convert_codespan(el, indent)
  if el.attr['lang'] && HIGHLIGHTING_AVAILABLE
    attr = el.attr.dup
    result = CodeRay.scan(el.value, attr.delete('lang').to_sym).html(:wrap => :span, :css => @options[:coderay_css]).chomp
    "<code#{html_attributes(attr)}>#{result}</code>"
  else
    "<code#{html_attributes(el.attr)}>#{escape_html(el.value)}</code>"
  end
end