Dashboard
PHP:
8.2.30
OS:
Linux
User:
dh_nv8b2m
/
/
usr
/
lib
/
ruby
/
vendor_ruby
/
tilt
📤 Upload
📝 New File
📁 New Folder
Close
Editing: wikicloth.rb
require 'tilt/template' require 'wikicloth' module Tilt # WikiCloth implementation. See: # http://redcloth.org/ class WikiClothTemplate < Template def prepare @parser = options.delete(:parser) || WikiCloth::Parser @engine = @parser.new options.merge(:data => data) @output = nil end def evaluate(scope, locals, &block) @output ||= @engine.to_html end def allows_script? false end end end
Save
Cancel