I am writing a post with code block with Liquid codes in it. So I am wrapping them in {% raw %} tag:
...
{%- raw -%}
{% include head.html %}
{%- endraw -%}
...
The hyphens are to strip whites-pace (two line breaks) that are inserted before and after the raw block, per: https://shopify.github.io/liquid/basics/whitespace/
But this generates syntax error:
Liquid Exception: Liquid syntax error (line 82): Tag '{%- raw -%}' was not properly terminated with regexp: /\%\}/
Is hyphens not supported with raw tag? Or am I doing something wrong here?
Thanks for answering.