class RDoc::Parser::Markdown
Parse a Markdown format file. The parsed RDoc::Markup::Document is attached as a file comment.
Public Instance Methods
Source
# File lib/rdoc/parser/markdown.rb, line 15 def scan comment = RDoc::Comment.new @content, @file comment.format = 'markdown' @file.comment = comment end
Creates an Markdown-format File for the given file.