[trim] Fix trimming at end of raw block when specified in the opening tag

This commit is contained in:
Guillaume Malette
2023-05-19 11:41:45 -04:00
parent 81ed65f2a1
commit 649cca1349
2 changed files with 3 additions and 1 deletions
+1
View File
@@ -26,6 +26,7 @@ module Liquid
@body = +''
while (token = tokens.shift)
if token =~ FullTokenPossiblyInvalid && block_delimiter == Regexp.last_match(2)
parse_context.trim_whitespace = (token[-3] == WhitespaceControl)
@body << Regexp.last_match(1) if Regexp.last_match(1) != ""
return
end
+2 -1
View File
@@ -13,8 +13,9 @@ class RawTagTest < Minitest::Test
end
def test_output_in_raw
# assert_template_result('{{ test }}', '{% raw %}{{ test }}{% endraw %}')
assert_template_result('>{{ test }}<', '> {%- raw -%}{{ test }}{%- endraw -%} <')
assert_template_result("> inner <", "> {%- raw -%} inner {%- endraw %} <")
assert_template_result("> inner <", "> {%- raw -%} inner {%- endraw -%} <")
end
def test_open_tag_in_raw