In current version, remove_spaces_inside_tags() is always called and cannot be disabled by option.
And this compression causes corruption in <input> value.
<!-- before -->
<input value=" value = 5 ">
<!-- after -->
<input value=" value=5 ">
So. at least either of following improvements is necessary:
- Create option to disable this compression
- Exclude attribute values from this compression
In current version,
remove_spaces_inside_tags()is always called and cannot be disabled by option.And this compression causes corruption in
<input>value.So. at least either of following improvements is necessary: