Parse a Markdown format file. The parsed RDoc::Markup::Document is attached as a file comment.

Methods
S
Included Modules
Instance Public methods
scan()

Creates an Markdown-format TopLevel for the given file.

# File lib/rdoc/parser/markdown.rb, line 14
def scan
  comment = RDoc::Comment.new @content, @top_level
  comment.format = 'markdown'

  @top_level.comment = comment
end