Nginx-Lua-minification-library icon indicating copy to clipboard operation
Nginx-Lua-minification-library copied to clipboard

"text/html" Regular Expressions

Open alexz006 opened this issue 5 years ago • 0 comments
trafficstars

local content_type_list = {
	{
		"text/html",
		{
			--[[
			Usage :
			Regex, Replacement
			Text, Replacement
			]]
			--<!--[if gt IE 8]><!--> <html> <!--<![endif]--> - OK
			{"<!%-%-[^%[]-->", "",},
			{"%s%s+", " ",},
			{"\n\n*", " ",},
			{"\n*$", ""}
		}
	}
}

For CSS and JS, I use Nginx Pagespeed.

alexz006 avatar Feb 04 '20 11:02 alexz006