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
A laravel blade file is not really a html file. It includes program directives for conditions and loops.
But, because it starts with @ (like @foreach), the laravel directrives get escaped by domReplaceHelpers.
A laravel blade file is not really a html file. It includes program directives for conditions and loops.
But, because it starts with @ (like @foreach), the laravel directrives get escaped by domReplaceHelpers.
For example,
will be parsed to:
So, this works well for me to manipulate html parts of the blade file.
However, a case below messes it up:
You see below, the for part gets truncated.
I believe that because 'i <= 6' includesa html starting tag: <.
I wonder if there is anyway to prevent this from happening.
Thanks in advance.
The text was updated successfully, but these errors were encountered: