This: ``` <div>1 <a>2</a> 3</div> ^ spaces ^ ``` reproduces ``` <div>1<a>2</a>3</div> ^ not ^ ``` problem only found to be occurring with `<a>` tags so far Edit: actually I think it's **all** ***nested*** tags, but then spaced *in between* nested tags is still preserved. Here's another case: ``` <div>1 <a>2</a> <b>3</b> 4</div> ``` reproduces ``` <div>1<a>2</a> <b>3</b>4</div> ```