class Kramdown::Utils::OrderedHash

def []=(key, val)

Set the value for the +key+ to +val+.
def []=(key, val)
  @order << key if !@data.has_key?(key)
  @data[key] = val
end