Strips hashes, expands tabs then flushes text to the left
# File lib/rdoc/text.rb, line 111
def normalize_comment text
return text if text.empty?
text = strip_stars text
text = strip_hashes text
text = expand_tabs text
text = flush_left text
text = strip_newlines text
text
end