module RDoc::Text

def normalize_comment text

def normalize_comment text
  return text if text.empty?
  case language
  when :ruby
    text = strip_hashes text
  when :c
    text = strip_stars text
  end
  text = expand_tabs    text
  text = flush_left     text
  text = strip_newlines text
  text
end