Overview
Jade is a Node.js template engine that uses indentation as part of the syntax
By default, Jade buffers the output so we have to be explicit when we want unbuffered code
Solution
If content contains html and you want to render it, use != like this:
div!=content
Another example
p!= 'This code is' + ' <strong>not</strong> escaped!'
Photo by Pankaj Patel on Unsplash