# File lib/whois/record/parser/scanners/whois.nic.it.rb, line 69
            def parse_section_items
              if @input.match?(/(\s+)([^:]+?)\n/)
                items = []
                indentation = @input[1].length
                while item = parse_section_items_item(indentation)
                  items << item
                end
                items
              end
            end