In my application, if I have a nicely indented piece of markup like this:
<div>
<label>FOO</label>
<span>BAR</span>
</div>
It renders as FOO BAR
. Whilst this:
<div>
<label>FOO</label><span>BAR</span>
</div>
renders as FOOBAR
I don't want the space, but I do want to keep the indentation in the cshtml file.