3
我敢肯定,這是微不足道的 - 但一直在抨擊我的頭牆 我想要一個目錄充滿了鬍鬚模板(html文件本質上)並將它們組合成一個文件 - 包裝每一個與標籤Apache Ant爲每個文件的concat作業添加頁眉和頁腳
例子:
File1 = <a>This is a Link</a>
File2 = <b>This is in bold</b>
我要像輸出看:
<script type="text/mustache" id="File1">
<a>This is a Link</a>
</script>
<script type="text/mustache" id="File2">
<b>This is in bold</b>
</script>
我使用的是CONCATŧ問
<concat destfile="mustache.js" fixlastline="yes">
<fileset dir="." includes="**/*.mustache"/>
</concat>
,但無法弄清楚如何讓腳本塊顯示
感謝您的想法 - 實際上我們無法得到這個工作(並放棄了 - 使用bash腳本,而不是: – user922044
這個例子完全是你要求的 - 什麼不適合你!? – Rebse