Creole implementation. See: www.wikicreole.org/
# File lib/tilt/creole.rb, line 21 def allows_script? false end
# File lib/tilt/creole.rb, line 17 def evaluate(scope, locals, &block) @output ||= @engine.to_html end
# File lib/tilt/creole.rb, line 8 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