class Kramdown::Converter::Html

def options_for_element(el)

Return the string with the attributes of the element +el+.
def options_for_element(el)
  (el.options[:attr] || {}).map {|k,v| v.nil? ? '' : " #{k}=\"#{escape_html(v.to_s, false)}\"" }.sort.join('')
end