My main.html template contains the following code:
<p>{% include "pouac.html" %}{% include "pouac.html" %}</p>
The pouac.html file contains one line:
<span>pouac</span>
The main.html template creates the following lines two html codes:
<span>pouac</span> <span>pouac</span>
The disgusting side effect is that this code creates some space between the two words "pouac" (for example: "word1" and "word2" are separated by a space in http://jsfiddle.net/regisb/CBtaz/ )
To get rid of this gap, I would like to make a Django template without adding an extended line break. How can i do this?
source share