BlueCloth Markdown implementation. See: deveiate.org/projects/BlueCloth/
# File lib/tilt/markdown.rb, line 139 def self.engine_initialized? defined? ::BlueCloth end
# File lib/tilt/markdown.rb, line 156 def allows_script? false end
# File lib/tilt/markdown.rb, line 152 def evaluate(scope, locals, &block) @output ||= @engine.to_html end
# File lib/tilt/markdown.rb, line 143 def initialize_engine require_template_library 'bluecloth' end
# File lib/tilt/markdown.rb, line 147 def prepare @engine = BlueCloth.new(data, options) @output = nil end