repo.or.cz
/
rbx.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Imported File#ftype spec from rubyspecs.
[rbx.git]
/
lib
/
rdoc
/
markup
/
formatter.rb
blob
14cbae59f984bc628cd7be11055e8fbc8e43706d
1
require 'rdoc/markup'
2
3
class RDoc::Markup::Formatter
4
5
def initialize
6
@markup = RDoc::Markup.new
7
end
8
9
def convert(content)
10
@markup.convert content, self
11
end
12
13
end
14