Sha256: a29f2fa4b5390f56107f44faf44266e4c14b9980827c9797b6ca645a42df71a8

Contents?: true

Size: 539 Bytes

Versions: 52

Compression:

Stored size: 539 Bytes

Contents

module Temple
  module HTML
    # @api private
    module Dispatcher
      def on_html_attrs(*attrs)
        [:html, :attrs, *attrs.map {|a| compile(a) }]
      end

      def on_html_attr(name, content)
        [:html, :attr, name, compile(content)]
      end

      def on_html_comment(content)
        [:html, :comment, compile(content)]
      end

      def on_html_tag(name, attrs, content = nil)
        result = [:html, :tag, name, compile(attrs)]
        content ? (result << compile(content)) : result
      end
    end
  end
end

Version data entries

52 entries across 52 versions & 2 rubygems

Version Path
classiccms-0.3.4 vendor/bundle/gems/temple-0.4.0/lib/temple/html/dispatcher.rb
classiccms-0.3.3 vendor/bundle/gems/temple-0.4.0/lib/temple/html/dispatcher.rb
classiccms-0.3.2 vendor/bundle/gems/temple-0.4.0/lib/temple/html/dispatcher.rb
classiccms-0.3.1 vendor/bundle/gems/temple-0.4.0/lib/temple/html/dispatcher.rb
classiccms-0.3.0 vendor/bundle/gems/temple-0.4.0/lib/temple/html/dispatcher.rb
classiccms-0.2.4.pre vendor/bundle/gems/temple-0.4.0/lib/temple/html/dispatcher.rb
temple-0.4.0 lib/temple/html/dispatcher.rb
temple-0.3.5 lib/temple/html/dispatcher.rb
temple-0.3.4 lib/temple/html/dispatcher.rb
temple-0.3.2 lib/temple/html/dispatcher.rb
temple-0.3.1 lib/temple/html/dispatcher.rb
temple-0.3.0 lib/temple/html/dispatcher.rb