Jadeのコンパイルオプションpretty
ではtrueに設定されています。
コンパイル方法に応じて、複数の方法で実行できます
- コマンドラインから
-P
または--pretty
フラグを渡します。
- Express 3.xから:
app.locals.pretty = true;
(express 2.xは別の構文を使用しました:app.set('view options', { pretty: true });
、移行ガイドを参照してください:https ://github.com/visionmedia/express/wiki/Migrating-from-2.x-to-3.x )
次に、次のことができます
#test. // <-- notice the dot
Lorem Ipsum is simply dummy text of
the printing and typesetting industry.
Lorem Ipsum has been the industry's standard dummy
text ever since the 1500s ,
when an unknown printer took a galley of type and scrambled
を生成します
<div id="test">
Lorem Ipsum is simply dummy text of
the printing and typesetting industry.
Lorem Ipsum has been the industry's standard dummy
text ever since the 1500s ,
when an unknown printer took a galley of type and scrambled
</div>