[bug] Empty spaces between two elements
butschster opened this issue · 2 comments
butschster commented
Hi guys!
Let's imagine two situations
Fist
Two elements, each on a new line
<div>
<span class="px-1">hello</span>
<span class="px-1">world</span>
</div>
Second
Two element on one line with space
<div>
<span class="px-1">hello</span> <span class="px-1">world</span>
</div>
And what behavior we should expect on each case. I suggest the following behavior
In the first case we can remove empty space
hello world
In the second case we can keep space
hello world
butschster commented
@xiCO2k @nunomaduro what do you think?
xiCO2k commented
Thanks @butschster. I like it.