module RDoc::Text
def strip_stars text
def strip_stars text text = text.gsub %r%Document-method:\s+[\w:.#]+%, '' text.sub! %r%/\*+% do " " * $&.length end text.sub! %r%\*+/% do " " * $&.length end text.gsub! %r%^[ \t]*\*%m do " " * $&.length end text end