D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
opt
/
td-agent
/
embedded
/
lib
/
ruby
/
gems
/
2.1.0
/
gems
/
tilt-1.4.1
/
lib
/
tilt
/
Filename :
wiki.rb
back
Copy
require 'tilt/template' module Tilt # Creole implementation. See: # http://www.wikicreole.org/ class CreoleTemplate < Template def self.engine_initialized? defined? ::Creole end def initialize_engine require_template_library 'creole' end def prepare opts = {} [:allowed_schemes, :extensions, :no_escape].each do |k| opts[k] = options[k] if options[k] end @engine = Creole::Parser.new(data, opts) @output = nil end def evaluate(scope, locals, &block) @output ||= @engine.to_html end def allows_script? false end end # WikiCloth implementation. See: # http://redcloth.org/ class WikiClothTemplate < Template def self.engine_initialized? defined? ::WikiCloth::Parser end def initialize_engine require_template_library 'wikicloth' end 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