Sha256: 5783c9ebfd0a771cc78bf6c5de8f662f300680ab3925abb8c4699a1881b8c708

Contents?: true

Size: 739 Bytes

Versions: 114

Compression:

Stored size: 739 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_condcomment(condition, content)
        [:html, :condcomment, condition, compile(content)]
      end

      def on_html_js(content)
        [:html, :js, 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

114 entries across 100 versions & 7 rubygems

Version Path
temple-0.7.6 lib/temple/html/dispatcher.rb
temple-0.7.5 lib/temple/html/dispatcher.rb
temple-0.7.4 lib/temple/html/dispatcher.rb
temple-0.7.3 lib/temple/html/dispatcher.rb
temple-0.7.2 lib/temple/html/dispatcher.rb
temple-0.7.1 lib/temple/html/dispatcher.rb
temple-0.6.10 lib/temple/html/dispatcher.rb
temple-0.6.9 lib/temple/html/dispatcher.rb
temple-0.6.8 lib/temple/html/dispatcher.rb
temple-0.6.7 lib/temple/html/dispatcher.rb
temple-0.6.6 lib/temple/html/dispatcher.rb
temple-0.6.5 lib/temple/html/dispatcher.rb
temple-0.6.4 lib/temple/html/dispatcher.rb
temple-0.6.3 lib/temple/html/dispatcher.rb