Imported File#ftype spec from rubyspecs.
[rbx.git] / lib / rdoc / markup / formatter.rb
blob14cbae59f984bc628cd7be11055e8fbc8e43706d
1 require 'rdoc/markup'
3 class RDoc::Markup::Formatter
5   def initialize
6     @markup = RDoc::Markup.new
7   end
9   def convert(content)
10     @markup.convert content, self
11   end
13 end