You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello! I found some cases where when the script node is evaluated on the same line as the tag node, the !&~ symbols for unescaping html, preserving, etc, are being formatted incorrectly.
All of the following tests are currently failing
def test_preserve
assert_format("%p~ foo")
end
def test_escape_html
assert_format("%div&= foo")
end
def test_preserve_escape_html
assert_format("%p&~ foo")
end
def test_unescape
assert_format('%p!= foo')
end
Thanks!
The text was updated successfully, but these errors were encountered:
Hello! I found some cases where when the script node is evaluated on the same line as the tag node, the
!&~
symbols for unescaping html, preserving, etc, are being formatted incorrectly.All of the following tests are currently failing
Thanks!
The text was updated successfully, but these errors were encountered: