class Tilt::RedClothTemplate

redcloth.org/
RedCloth implementation. See:

def compile!

def compile!
  @engine = RedCloth.new(data)
end

def evaluate(scope, locals, &block)

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

def initialize_engine

def initialize_engine
  require_template_library 'redcloth' unless defined? ::RedCloth
end