我想在“建筑”模板文字中包含“玻璃”模板文字。
<script id="building" type="text/x-nunjucks-template">
{% for x in range(0, 5) %}
<a-entity template="src: building.template; type: handlebars" position="{{ x * 5 }} 0 0">
</a-entity>
{% endfor %}
</script>
<script id="glass" type="text/x-nunjucks-template">
{% for x in range(0, 5) %}
<a-entity template="src: glass.template; type: handlebars" position="{{ x }} 2 2">
</a-entity>
{% endfor %}
</script>
我知道它们需要在.HTML文件中运行-我只是想知道是否可以解决这个问题,所以我可以做到以下几点:
index.html-> building.template-> glass.template
谢谢
答案 0 :(得分:2)
使用{% raw %}
。
{% raw %}
some nunjucks templating
{% endraw %}
它不会在外部模板上呈现。