Several reasons for not compressing HTML

Several reasons for not compressing HTML
The reason is simple:

In HTML documents, multiple whitespace characters are equivalent to one whitespace character. In other words, it is unsafe to delete whitespace characters such as line breaks, as this may cause differences in the styles of some elements.
In HTML elements, there is a pre, which means preformatted text. Any whitespace inside it cannot be deleted.
It is possible to have IE conditional comments in HTML. These conditional comments are part of the document logic and cannot be removed.
I only think of the above 3 points, there may be other pitfalls. For dynamic pages, HTML compression may increase the CPU burden on the server, which is not worth the cost.

Generally speaking, gzip compression can achieve good results. There are pitfalls to further compression, and unless you have tested it as thoroughly as Google has (Google only compresses a small number of core service pages), it is not recommended to compress HTML.

<<:  Detailed explanation of JavaScript timers

>>:  Solutions to invalid is Null segment judgment and IFNULL() failure in MySql

Recommend

Implementation example of nginx access control

About Nginx, a high-performance, lightweight web ...

Tutorial on installing mysql5.7.18 on windows10

This tutorial shares the installation and configu...

Sample code of uniapp vue and nvue carousel components

The vue part is as follows: <template> <...

How to build and deploy Node project with Docker

Table of contents What is Docker Client-side Dock...

MySQL 8.0.15 installation and configuration graphic tutorial under Win10

This article records the installation and configu...

js memory leak scenarios, how to monitor and analyze them in detail

Table of contents Preface What situations can cau...

vsftpd virtual user based on MySql authentication

Table of contents 1. MySQL installation 1.2 Creat...

Ubuntu 16.04 image complete installation tutorial under VMware

This article shares with you the installation tut...

Sample code using the element calendar component in Vue

First look at the effect diagram: The complete co...

Teach you how to use AWS server resources for free

AWS - Amazon's cloud computing service platfo...

Setting up shared folders in Ubuntu virtual machine of VMWare14.0.0

This is my first blog post. Due to time constrain...

Extract specific file paths in folders based on Linux commands

Recently, there is a need to automatically search...