soundasleep / iacleaner

Automatically exported from code.google.com/p/iacleaner
0 stars 0 forks source link

Cleaner should take whitespace around inline HTML tags into account #13

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Try and clean the following code:
<h1> <a href="1"> one </a> <a href="2"> two </a> </h1>

What is the expected output? What do you see instead?
Expected: <h1><a href="1"> one </a> <a href="2"> two </a></h1>
Actual: <h1><a href="1">one</a><a href="2">two</a></h1>

The cleaner should take into account the whitespace around inline HTML tags
as necessary.

Original issue reported on code.google.com by soundasleep on 18 Sep 2009 at 9:06

GoogleCodeExporter commented 9 years ago
Resolved in r114.

Original comment by soundasleep on 21 Sep 2009 at 11:37