I have two same html code with diffrent result.
Because of the gulp compressing html files and removing extra break lines my codes looks like first block but I dont want my word join together.
<p><span>آقای</span><span>اکبری</span></p>
<!-- Wrong: آقایاکبری -->
<p><span style="margin: 0 5px;">آقای</span><span style="margin: 0 5px;">اکبری</span></p>
<!-- Wrong: آقایـ ـاکبری -->
<p>
<span>آقای</span>
<span>اکبری</span>
</p>
<!-- Correct: آقای اکبری -->
Using an entity code will stop your compressor from removing whitespace as it isn't whitespace.
 is a non-breaking space.