class Tilt::BlueClothTemplate

BlueCloth Markdown implementation. See: deveiate.org/projects/BlueCloth/

Public Instance Methods

allows_script?() click to toggle source
   # File lib/tilt/bluecloth.rb
19 def allows_script?
20   false
21 end
evaluate(scope, locals, &block) click to toggle source
   # File lib/tilt/bluecloth.rb
15 def evaluate(scope, locals, &block)
16   @output ||= @engine.to_html
17 end
prepare() click to toggle source
   # File lib/tilt/bluecloth.rb
10 def prepare
11   @engine = BlueCloth.new(data, options)
12   @output = nil
13 end