私は Mustache を使用しており、さまざまな HTML ファイルで使用されるテンプレートがあります。
<script id="template" type="text/template">
{{#repo}}
<b>{{name}}</b>
{{/repo}}
</script>
このテンプレートを次のような別のファイルに分離したいと思います。
<script id="template" type="text/template" src="./js/template-must"></script>
しかし、これはうまくいきません。何か案は?