So I have this basic pug code
p This is some text
span foo
span bar
The expected output would look like this:
This is some text foo bar
However it actually outputs this (white space is removed):
This is some textfoobar
It is possible to add the space by adding an empty white space to the end of the line.
I need to be able to retain the white space though when white space trimming is turned on in my editor. White space trimming removes the white space from the end of the line when you save the file.
So is there a way to force add white space to the end of a line that is retained even when white space trimming is turned on in an editor?