class Kramdown::Converter::Html

def remove_footnotes(elements)

Remove all footnotes from the given elements.
def remove_footnotes(elements)
  elements.delete_if do |c|
    remove_footnotes(c.children)
    c.type == :footnote
  end
end