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?