strip_stars(text)
Strips /* */ style comments
# File lib/rdoc/text.rb, line 121 def strip_stars text text = text.gsub %Document-method:\s+[\w:.#]+%, '' text.sub! %/\*+% do " " * $&.length end text.sub! %\*+/% do " " * $&.length end text.gsub! %^[ \t]*\*% do " " * $&.length end text end