class Kramdown::Converter::Html

def initialize(doc)

Initialize the HTML converter with the given Kramdown document +doc+.
def initialize(doc)
  super
  @footnote_counter = @footnote_start = @doc.options[:footnote_nr]
  @footnotes = []
  @toc = []
  @toc_code = nil
end