I am trying to pass values that need to include new lines/brake lines into pug files.
So far I have tried
var value1 = "value 1";
var value2 = "value 2";
var infromation = "\n" + value1 + "\n" + value2;
res.render('pugfile', { information: information });
but when this is rendered in pug through
p Your messages are: #{information}
The html is rendered as
<p>
value 1
value 2
</p>
but the new line is not shown on the displayed webpage, which is the problem. Please help?