2012-10-12 69 views
0

我有一個mixin看起來像這樣插入新行手動玉

mixin preprocessor_instructions() 
    some text goes here 

這不只是actualy文字,但更多的我預處理一些高科技指令。我不希望它在任何標籤內。問題是,當我在玉模板使用混入這樣

+preprocessor_instructions 

它不插入輸出HTML換行符這段代碼之前,雖然我希望看到它那裏有它看起來很漂亮。如何使用Jade手動插入換行符?

回答

0

您可以使用內嵌HTML:

mixin preprocessor_instructions() 
    | //- <- note the space after the pipe 
    some text goes here 

+preprocessor_instructions