class Tilt::RedClothTemplate

redcloth.org/
RedCloth implementation. See:

def evaluate(scope, locals, &block)

def evaluate(scope, locals, &block)
  @output ||= @engine.to_html
end

def initialize_engine

def initialize_engine
  return if defined? ::RedCloth
  require_template_library 'redcloth'
end

def prepare

def prepare
  @engine = RedCloth.new(data)
  @output = nil
end