class Tilt::MarukuTemplate

Maruku markdown implementation. See: maruku.rubyforge.org/

Public Instance Methods

allows_script?() click to toggle source
# File lib/tilt/maruku.rb, line 17
def allows_script?
  false
end
evaluate(scope, locals, &block) click to toggle source
# File lib/tilt/maruku.rb, line 13
def evaluate(scope, locals, &block)
  @output ||= @engine.to_html
end
prepare() click to toggle source
# File lib/tilt/maruku.rb, line 8
def prepare
  @engine = Maruku.new(data, options)
  @output = nil
end