Class: Plate::HamlTemplate

Inherits:
Tilt::HamlTemplate
  • Object
show all
Defined in:
lib/plate/haml_template.rb

Overview

Mostly lifted from the default SassTemplate class at github.com/rtomayko/tilt/blob/master/lib/tilt/haml.rb

Modifications have been made to default to html5 style

Instance Method Summary collapse

Instance Method Details

#prepareObject



7
8
9
10
# File 'lib/plate/haml_template.rb', line 7

def prepare
  options = @options.merge(:filename => eval_file, :line => line)
  @engine = ::Haml::Engine.new(data, haml_options)
end