I\'m pretty sure that this is a no-brainer but I didn\'t find any snippet of sample code. What\'s the best way to insert line breaks (aka the good ol\' br/)?
As far
This doesn't seem to be an answer, so:
You can also do it by adding inline br tags using Jade/Pug's inline tag format, e.g.:
br
p. Some text on the first line.#[br] Some text on the second line.
Produces:
Some text on the first line. Some text on the second line.