# File lib/staticmatic/mixins/render.rb, line 95
  def generate_html_from_template_source(source, options = {})
    html = Haml::Engine.new(source, self.configuration.haml_options.merge(options))
    
    html.render(@scope, options) { yield }
  end