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