class Kramdown::Converter::Html

def convert_raw(el, indent, opts)

def convert_raw(el, indent, opts)
  if !el.options[:type] || el.options[:type].empty? || el.options[:type].include?('html')
    el.value + (el.options[:category] == :block ? "\n" : '')
  else
    ''
  end
end