hugo

Unnamed repository; edit this file 'description' to name the repository.

git clone git://git.shimmy1996.com/hugo.git
commit 5a0ee2b934e38d596da0f9742361f81c1221e3d5
parent 6746826689faca5ca09f46725501dceff1a0ebbc
Author: Bjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Date:   Sat, 18 Aug 2018 11:16:34 +0200

minifiers: Do not strip IE conditional statements

Fixes #5089

Diffstat:
Mminifiers/minifiers.go | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/minifiers/minifiers.go b/minifiers/minifiers.go
@@ -65,7 +65,8 @@ func (m Client) Minify(mediatype media.Type, dst io.Writer, src io.Reader) error
 func New(mediaTypes media.Types, outputFormats output.Formats) Client {
 	m := minify.New()
 	htmlMin := &html.Minifier{
-		KeepDocumentTags: true,
+		KeepDocumentTags:        true,
+		KeepConditionalComments: true,
 	}
 
 	// We use the Type definition of the media types defined in the site if found.