Class: Tilt::CommonMarkerTemplate
Instance Attribute Summary
Attributes inherited from Template
#data, #file, #line, #options
Instance Method Summary
collapse
Methods inherited from Template
#basename, default_mime_type, default_mime_type=, #eval_file, #initialize, metadata, #metadata, #name, #render
Constructor Details
This class inherits a constructor from Tilt::Template
Instance Method Details
#allows_script? ⇒ Boolean
17
18
19
|
# File 'lib/tilt/commonmarker.rb', line 17
def allows_script?
false
end
|
#evaluate(scope, locals, &block) ⇒ Object
13
14
15
|
# File 'lib/tilt/commonmarker.rb', line 13
def evaluate(scope, locals, &block)
CommonMarker.render_html(data, :default)
end
|
#prepare ⇒ Object
8
9
10
11
|
# File 'lib/tilt/commonmarker.rb', line 8
def prepare
@engine = nil
@output = nil
end
|