编译这样的模板dustc
:
$ cat <<EOF | ./node_modules/.bin/dustc -
<p>Hi there!</p>
<p>I'm a {! dust !} template.</p>
EOF
输出:
(function(){dust.register("-",body_0);function body_0(chk,ctx){return chk.write("<p>Hi there!</p><p>I'm a template.</p>");}return body_0;})();
但没有\n
行间,例如:"<p>Hi there!</p>\n<p>I'm a template.</p>"
有什么办法可以改变这个吗?谢谢