Input:
.a text1
.b text2
Output will be:
<div class="a">text1</div><div class="b">text2</div>
The second <div>
is just close to the first one without any spaces or LFs.
However, this is what I really want to get:
<div class="a">text1</div>
<div class="b">text2</div>
or:
<div class="a">text1</div> <div class="b">text2</div>
Because I need to put a space between them when I use display:inline-block
. I don't want to set the margin in CSS.
Is it possible to let jade not eat my spaces or LFs?
Thanks,