RedCloth implementation. See: redcloth.org/
# File lib/tilt.rb, line 760 def evaluate(scope, locals, &block) @output ||= @engine.to_html end
# File lib/tilt.rb, line 750 def initialize_engine return if defined? ::RedCloth require_template_library 'redcloth' end
# File lib/tilt.rb, line 755 def prepare @engine = RedCloth.new(data) @output = nil end