In Files

  • ruby-3.1.2/lib/rdoc/parser/markdown.rb

Parent

Methods

Included Modules

Files

Class/Module Index [+]

Quicksearch

RDoc::Parser::Markdown

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

Public Instance Methods

scan() click to toggle source

Creates an Markdown-format TopLevel for the given file.

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

  @top_level.comment = comment
end