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
Ideally, this would work even if partial includes other partials, and the marker is in those dependencies.
The feature I am asking for is to have a lambda function which "partially" realizes the partial. Rather than fully rendering the partial (which would lose the comment markers), it would replace the {{> partial}} in the string passed to the lambda with whatever is actually within partial, and recursively do so. User will need to avoid infinite loops.
The only alternative way I can imagine implementing something like this is by using global state and objects, which feels like the wrong pattern.
The text was updated successfully, but these errors were encountered:
I have a partial..
And an outer context which has a lambda...
I want to be able to do something like...
Ideally, this would work even if partial includes other partials, and the marker is in those dependencies.
The feature I am asking for is to have a lambda function which "partially" realizes the partial. Rather than fully rendering the partial (which would lose the comment markers), it would replace the
{{> partial}}
in the string passed to the lambda with whatever is actually within partial, and recursively do so. User will need to avoid infinite loops.The only alternative way I can imagine implementing something like this is by using global state and objects, which feels like the wrong pattern.
The text was updated successfully, but these errors were encountered: