# File lib/whois/record/parser/scanners/whois.tld.ee.rb, line 20
          def parse_content
            if @input.scan(/contact:\s+(.*)\n/)
              section = @input[1].strip
              content = {}

              while @input.scan(/(.*?):\s+(.*?)\n/)
                content[@input[1]] = @input[2]
              end

              @ast[section] = content
            # FIXME: incomplete scanner, it skips all the properties
            else
              @input.scan(/(.*)\n/)
            end
          end