When generating an HTML document in yattag, how do you add a line break (<br/>)?
yattag
<br/>
You could use doc.stag('br') since the stag method produces a self closing tag. You'll get <br />
doc.stag('br')
stag
<br />