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
When invoking a custom tag, it is possible to place content inside it which will then be rendered as part of the custom tag. Partial template invocations use the same basic mechanism as custom tags (renderer functions), so I would expect them to support it as well.
For example:
{{<test}}This is a partial! <b><content /></b>{{/test}}
{{>test}}And here is the content.{{/test}}
Currently, this throws a lot of internal null-ref exceptions, which suggests that the idea of providing content to a partial invocation simply hasn't been considered.
The text was updated successfully, but these errors were encountered:
When invoking a custom tag, it is possible to place content inside it which will then be rendered as part of the custom tag. Partial template invocations use the same basic mechanism as custom tags (renderer functions), so I would expect them to support it as well.
For example:
Currently, this throws a lot of internal null-ref exceptions, which suggests that the idea of providing content to a partial invocation simply hasn't been considered.
The text was updated successfully, but these errors were encountered: