So what I want is to put some multiline HTML into a Pug file and can\'t find anywhere how to do this.
Example:
html
head
body
This is a tested example with passing variables with raw html to the pug file:
yourSourceFile.js
const p1 = 'This server uses a pug template for the html output'
res.render('yourTemplateFile', { title: 'Hey', p1 })
yourTemplateFile.pug
html
head
title= title
body
p
| !{p1}