It looks like extra line breaks in the HTML code may add unwanted spaces in the final output. I always thought that no matter how I layout my HTML code, it will not affect the way the rendered result looks like. But here is an example:
<h2>
<a href="#">Hello.</a>World
</h2>
Will display: "Hello.World" - all looking good as expected
<h2>
<a href="#">Hello.</a>
World
</h2>
Will display: "Hello. World" - with an extra space after the dot!
Is there a chance to get rid of this effect? I want to have my code on separate lines - and not producing an extra space.