Hacker News new | ask | show | jobs
by corobo 2344 days ago
Does HTML ever need minifying? Serving using compression would handle it wouldn’t it?
1 comments

html minifer mostly just remove the whitespaces. Compression (gzip or brotli) preserves the source, i.e. decompressed file is exactly the same as the original's; whereas minifier alters the source.
Well that’s what I mean. Minifying css/js makes sense as it usually includes a concatenation stage.

Minifying HTML just makes your page source slightly harder to look at. Whitespace would be squashed into almost nothing with in-transit compression.

Probably something nobody ever needs to think of, but as a web dev it’s an argument I’ve had more than once!