我正在尝试将需要包含新行/刹车线的值传递到 pug 文件中。
到目前为止我已经尝试过
var value1 = "value 1";
var value2 = "value 2";
var infromation = "\n" + value1 + "\n" + value2;
res.render('pugfile', { information: information });
但是当这在 pug through 中呈现时
p Your messages are: #{information}
html呈现为
<p>
value 1
value 2
</p>
但是显示的网页上没有显示新行,这是问题所在。请帮忙?