class KramdownRFC::ParameterSet

def arr(an, converthash=true, must_have_one=false, &block)

def arr(an, converthash=true, must_have_one=false, &block)
  arr = self[an] || []
  arr = [arr] if Hash === arr && converthash
  arr << { } if must_have_one && arr.empty?
  Array(arr).each(&block)
end