我需要这样的方法。
{% raw %}
{% include "snippet" %}
{% endraw %}
除此之外阻止include运行。所以它并没有做我需要的。
理想情况下,有一个include_raw
代码。
更新
以下内容:
<!-- reggi 090 -->
<script type="text/liquid">
{% capture raw_data %}{% include 'product_thumbnail' %}{% endcapture %}
{% raw %}{{ raw_data }}{% endraw %}
</script>
只需渲染:
<!-- reggi 090 -->
<script type="text/liquid">
{{ raw_data }}
</script>
答案 0 :(得分:0)
试试这个
{% capture raw_data %}{% include 'snippet' %}{% endcapture %}
{% raw %}}{{ raw_data }}{% endraw %}