# File lib/whois/record/parser/scanners/whois.nic.it.rb, line 98
              def parse_section_pair
                if @input.scan(/(\s+)(.+?):(\s+)(.*?)\n/)
                  key = @input[2].strip
                  values = [@input[4].strip]
                  indentation = @input[1].length + @input[2].length + 1 + @input[3].length
                  while value = parse_section_pair_newlinevalue(indentation)
                    values << value
                  end
                  { key => values.join("\n") }
                end
              end