minfiers: Keep end tags
authorvsopvsop <vsopvsop@users.noreply.github.com>
Sat, 25 Aug 2018 08:49:15 +0000 (14:19 +0530)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sat, 25 Aug 2018 08:49:15 +0000 (10:49 +0200)
Fixes  #5112

minifiers/minifiers.go

index c2f3ef6dfafb61cd09f7f415645d2e293b2a8672..28058dcd812446cf68a7b98e58b87b051d65f54e 100644 (file)
@@ -67,6 +67,7 @@ func New(mediaTypes media.Types, outputFormats output.Formats) Client {
        htmlMin := &html.Minifier{
                KeepDocumentTags:        true,
                KeepConditionalComments: true,
+               KeepEndTags:             true,
        }
 
        // We use the Type definition of the media types defined in the site if found.