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
21 def allows_script?
22   false
23 end
evaluate(scope, locals, &block) click to toggle source
   # File lib/tilt/bluecloth.rb
17 def evaluate(scope, locals, &block)
18   @output ||= @engine.to_html
19 end
prepare() click to toggle source
   # File lib/tilt/bluecloth.rb
12 def prepare
13   @engine = BlueCloth.new(data, options)
14   @output = nil
15 end