mirror of
https://github.com/kemko/liquid.git
synced 2026-01-01 15:55:40 +03:00
Add inline comments syntax
This commit is contained in:
15
lib/liquid/tags/inline_comment.rb
Normal file
15
lib/liquid/tags/inline_comment.rb
Normal file
@@ -0,0 +1,15 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
module Liquid
|
||||
class InlineComment < Tag
|
||||
def blank?
|
||||
true
|
||||
end
|
||||
|
||||
def render_to_output_buffer(_context, _output)
|
||||
end
|
||||
end
|
||||
|
||||
Template.register_tag('#', InlineComment)
|
||||
end
|
||||
|
||||
17
test/integration/inline_comment_test.rb
Normal file
17
test/integration/inline_comment_test.rb
Normal file
@@ -0,0 +1,17 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
require 'test_helper'
|
||||
|
||||
class InlineCommentTest < Minitest::Test
|
||||
include Liquid
|
||||
|
||||
def test_basic_usage
|
||||
template_source = <<-END_TEMPLATE
|
||||
foo{% # this is a comment %}bar
|
||||
END_TEMPLATE
|
||||
template = Template.parse(template_source)
|
||||
rendered = template.render!
|
||||
assert_equal("foobar", rendered.strip)
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user