I've got a liquid snippet similar to this:
{%- assign value = 100 -%}
data-opts="{"value": {{ value }}}"
And render that snippet like:
<span class="{{ class }}" {% render 'snippet' %}>
Expected result:
<span class="hello" data-opts="...">
Now the issue is LangShop is translating the HTML attribute data-opts
and the result becomes something like this:
<span class="hello" <ls-key>...</lskey>>
This obviously breaking the HTML structure.
So my question is, can I tell LangShop to ignore this snippet (or certain files) as I don't want it to be translated ever.