class Kramdown::Utils::OrderedHash

def ==(other) #:nodoc:

:nodoc:
def ==(other) #:nodoc:
  return false unless other.kind_of?(self.class)
  @data == other.instance_variable_get(:@data) && @order == other.instance_variable_get(:@order)
end