find_text_page(file_name)
Returns the RDoc::TopLevel that is a text file and has the given file_name
# File lib/rdoc/store.rb, line 423 def find_text_page file_name @files_hash.each_value.find do |file| file.text? and file.full_name == file_name end end