class Kramdown::Converter::Html
def initialize(root, options)
def initialize(root, options) super @footnote_counter = @footnote_start = @options[:footnote_nr] @footnotes = [] @footnotes_by_name = {} @footnote_location = nil @toc = [] @toc_code = nil @indent = 2 @stack = [] # stash string representation of symbol to avoid allocations from multiple interpolations. @highlighter_class = " highlighter-#{options[:syntax_highlighter]}" @dispatcher = Hash.new {|h, k| h[k] = :"convert_#{k}" } end