class GitHub::Markup::RDoc

def initialize(content)

def initialize(content)
  @content = content
end

def to_html

def to_html
  if ::RDoc::VERSION.to_i >= 4
    h = ::RDoc::Markup::ToHtml.new(::RDoc::Options.new)
  else
    h = ::RDoc::Markup::ToHtml.new
  end
  h.convert(@content)
end