require 'malt/engines/abstract' module Malt::Engine # RDoc template. # # http://rdoc.rubyforge.org/ # # It's suggested that your program require 'rdoc/markup' and # 'rdoc/markup/to_html' at load time when using this template # engine. class RDoc < Abstract default :rdoc # Convert rdoc text to html. def render(params) text = params[:text] format = params[:format] case format when :html, nil html_engine.convert(text).to_s else super(params) end end private # Load rdoc makup library if not already loaded. def initialize_engine return if defined?(::RDoc::Markup) require 'rubygems' # hack require_library 'rdoc/markup' require_library 'rdoc/markup/to_html' end # def html_engine @html_engine ||= ::RDoc::Markup::ToHtml.new end end end