We are trying to solve this issue with an apostrophe in liquid syntax.
We've this value - 'products':'bags' in the variable and we would like to split it and remove the apostrophe.
{% assign values = field | remove: "'" | split: ":" %}
But this is not working.
Any help would be appreciated.