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'm doing some work where Fluid statements are written without tags, and then injected into a {% liquid tag prior to being parsed:
var statements = @"
assign name = 'Deane'
echo name
";
var source = @$"
{% liquid
{statements}
%}}";
_parser.TryParse(source, out var template, out var error);
I'm wondering if there should be a ParseStatements method on FluidParser that does this internally rather than depend on the string manipulation?