class Kramdown::Converter::Html

def initialize(root, options)

Initialize the HTML converter with the given Kramdown document +doc+.
def initialize(root, options)
  super
  @footnote_counter = @footnote_start = @options[:footnote_nr]
  @footnotes = []
  @footnotes_by_name = {}
  @toc = []
  @toc_code = nil
  @indent = 2
  @stack = []
  @coderay_enabled = @options[:enable_coderay] && HIGHLIGHTING_AVAILABLE
end