Dust.js テンプレート エンジンを使用しています。メイン テンプレートにはパーシャルが含まれており、問題は、dust.js が含まれているテンプレート ファイルのすべての行を削除することです。
たとえば、メインのテンプレートは次のとおりです。
<h1>{header}</h1>
{>dust_cnt /}
Dust_cnt.dust は次のとおりです。
<div>
This is
the content
</div>
res.render('dust_template.dust', {header: 'TEST OK'}); で応答をレンダリングします。
This is
出力でとの間にスペースがない問題the content
。したがって、出力は次のようになります。
TEST OK
This isthe content
{~n} や別のセパレーターを入れてすべての内容を変更することはできません。そうする理由はないと思います。
http://linkedin.github.com/dustjs/で、次の発言を見つけましたGH- 166 - Added trimming of white spaces in dust templates configuration in the dust.compile ( default option is still true)
。しかし、トリミングを避けるためにオプションを設定する方法が見つかりませんか?
Dust.js を作成して、期待どおりに (スペースを使用して) レンダリングするにはどうすればよいですか?
前もって感謝します!