summaryrefslogtreecommitdiff
path: root/ruby_2_2/lib/rdoc/parser/markdown.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_2_2/lib/rdoc/parser/markdown.rb')
-rw-r--r--ruby_2_2/lib/rdoc/parser/markdown.rb23
1 files changed, 23 insertions, 0 deletions
diff --git a/ruby_2_2/lib/rdoc/parser/markdown.rb b/ruby_2_2/lib/rdoc/parser/markdown.rb
new file mode 100644
index 0000000000..6fd88cf614
--- /dev/null
+++ b/ruby_2_2/lib/rdoc/parser/markdown.rb
@@ -0,0 +1,23 @@
+##
+# Parse a Markdown format file. The parsed RDoc::Markup::Document is attached
+# as a file comment.
+
+class RDoc::Parser::Markdown < RDoc::Parser
+
+ include RDoc::Parser::Text
+
+ parse_files_matching(/\.(md|markdown)(?:\.[^.]+)?$/)
+
+ ##
+ # Creates an Markdown-format TopLevel for the given file.
+
+ def scan
+ comment = RDoc::Comment.new @content, @top_level
+ comment.format = 'markdown'
+
+ @top_level.comment = comment
+ end
+
+end
+
+