# File lib/rir/document.rb, line 137
    def self.search_homepage(name)
      title = WikipediaPage.search_wikipedia_titles name

      begin
        WikipediaPage.new(WikipediaPage.get_url title[0]) unless title.nil? || title.empty?
      rescue
        puts title[0]
      end
    end