Compiling a such template with dustc
:
$ cat <<EOF | ./node_modules/.bin/dustc -
<p>Hi there!</p>
<p>I'm a {! dust !} template.</p>
EOF
outputs:
(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;})();
but without \n
between lines, eg: "<p>Hi there!</p>\n<p>I'm a template.</p>"
Is there any way to change this? Thank you