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
I just introduced this bug in 4.4.4, I'm sorry.
Templates like {{{{identity}}}}abc{{{{/identity}}}} {{{{identity}}}}abc{{{{/identity}}}}
(with identity being a block-helper that just returns the block contents) will return abc{{{{/identity}}}} {{{{identity}}}}abc instead of abc abc.
The text was updated successfully, but these errors were encountered:
In 4.4.4 the block-contents was matched with an eager match, which means
that with multiple raw-blocks of the same kind, the block was spanned
over the first ending-tag until the last one.
This commit replaces this by a non-eager match.
closes#1579
In 4.4.4 the block-contents was matched with an eager match, which means
that with multiple raw-blocks of the same kind, the block was spanned
over the first ending-tag until the last one.
This commit replaces this by a non-eager match.
closes#1579
I just introduced this bug in 4.4.4, I'm sorry.
Templates like
{{{{identity}}}}abc{{{{/identity}}}} {{{{identity}}}}abc{{{{/identity}}}}
(with
identity
being a block-helper that just returns the block contents) will returnabc{{{{/identity}}}} {{{{identity}}}}abc
instead ofabc abc
.The text was updated successfully, but these errors were encountered: