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 spent the best part of 30 minutes debugging why my partial wasn't expanding, and it turns out it was because I was using extend: partialName rather than extend=partialName.
Because I wasn't using ini syntax, nothing was being extended... this seems like something easy to detect and alert the developer of.
HOWEVER there is an actual bug here, as if the comment doesn't parse as an ini (for example, the following string:)
<!--THIS IS A COMMENT!-->
an exception is thrown as the ini parser fails. This feature has regressed functionality by killing HTML comments!
The text was updated successfully, but these errors were encountered:
I just spent the best part of 30 minutes debugging why my partial wasn't expanding, and it turns out it was because I was using
extend: partialName
rather thanextend=partialName
.Because I wasn't using ini syntax, nothing was being extended... this seems like something easy to detect and alert the developer of.
HOWEVER there is an actual bug here, as if the comment doesn't parse as an ini (for example, the following string:)
an exception is thrown as the ini parser fails. This feature has regressed functionality by killing HTML comments!
The text was updated successfully, but these errors were encountered: