Sha256: e496d330563c9b6dbcdae8f757fafcccaedb6d75e391c605c9833487fe524755

Contents?: true

Size: 219 Bytes

Versions: 1

Compression:

Stored size: 219 Bytes

Contents

module Liquid
  class Comment < Block
    def render(context)
      ''
    end

    def unknown_tag(tag, markup, tokens)
    end

    def blank?
      true
    end
  end

  Template.register_tag('comment', Comment)
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
locomotivecms-liquid-2.6.0 lib/liquid/tags/comment.rb