module RDoc::Text

def normalize_comment text

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