Any Liquid syntax inside {% raw %}{% endraw %}
tags should be ignored; current tests show BC's Liquid parser is rendering the contents anyway. E.g.:
{% assign name = 'freestyle' %} {% raw %}{{ name }}{% endraw %} = {{ name }}
...results in this output:
{% raw %}freestyle{% endraw %} = freestyle
...when it should appear like this:
{{ name }} = freestyle
Reference: https://github.com/Shopify/liquid/wiki/Liquid-for-Designers#raw