The compressed output does not contain any vertical whitespace (e.g. newlines \r or \n) but does contain many runs of multiple horizontal whitespace characters.
Note that there are two spaces instead of one between </button> and <input.
This problem is endemic: it's all over the compressed file and not limited to just two spaces; sometimes there are three or more. Clearly all such cases should be compressed to a single space.
The compressed output does not contain any vertical whitespace (e.g. newlines
\r
or\n
) but does contain many runs of multiple horizontal whitespace characters.Becomes:
Note that there are two spaces instead of one between
</button>
and<input
.This problem is endemic: it's all over the compressed file and not limited to just two spaces; sometimes there are three or more. Clearly all such cases should be compressed to a single space.