parse(str)
Parses str into a Document.
Use RDoc::Markup#parse instead of this method.
# File lib/rdoc/markup/parser.rb, line 58 def self.parse str parser = new parser.tokenize str doc = RDoc::Markup::Document.new parser.parse doc end