blob: c57c9cd6538057cdd6351f82b43bacbad49b1be3 [file] [log] [blame]
module Liquid
class Comment < Block
def render(_context)
''.freeze
end
def unknown_tag(_tag, _markup, _tokens)
end
def blank?
true
end
end
Template.register_tag('comment'.freeze, Comment)
end