Class: Slim::Embedded::TagEngine Private

Inherits:
Engine
  • Object
show all
Defined in:
lib/slim/embedded.rb

Overview

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Tag wrapper engine Generates a html tag and wraps another engine (specified via :engine option)

Direct Known Subclasses

JavaScriptEngine

Instance Method Summary collapse

Methods inherited from Filter

#on_slim_control, #on_slim_output, #on_slim_text

Instance Method Details

#on_slim_embedded(engine, body) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



211
212
213
214
215
216
217
218
219
220
221
# File 'lib/slim/embedded.rb', line 211

def on_slim_embedded(engine, body)
  if options[:engine]
    opts = {}.update(options)
    opts.delete(:engine)
    opts.delete(:tag)
    opts.delete(:attributes)
    @engine ||= options[:engine].new(opts)
    body = @engine.on_slim_embedded(engine, body)
  end
  [:html, :tag, options[:tag], [:html, :attrs, *options[:attributes].map {|k, v| [:html, :attr, k, [:static, v]] }], body]
end