Hi, we found a bug when trying to split on a | character
use Template::Liquid;
my $template = Template::Liquid->parse('{% assign fragments = foo | split: "| |" %}{% for fragment in fragments %}frag={{fragment}} {% endfor %}');
print $template->render(foo => "foo| |bar| |baz")
Have created a pull request with the fix and multiple tests.
Hi, we found a bug when trying to
spliton a|characterHave created a pull request with the fix and multiple tests.