# File raggle, line 1052
      def self.parse_attributes(source)
        #puts "SOURCE: ", source
        attributes = {}
        source.scan(ATTRIBUTE_LIST_RE) do |name, value, unquoted_value|
          attributes[name] = value || unquoted_value || ''
        end
        attributes
      end