Sha256: 00b7610209951a61a60449b9a55df3f129f7359ee088e388c12c9585a3b47592
Contents?: true
Size: 283 Bytes
Versions: 5
Compression:
Stored size: 283 Bytes
Contents
# frozen_string_literal: true module Liquid class Comment < Block def render_to_output_buffer(_context, output) output end def unknown_tag(_tag, _markup, _tokens) end def blank? true end end Template.register_tag('comment', Comment) end
Version data entries
5 entries across 5 versions & 1 rubygems