diff options
author | Bjørn Erik Pedersen <[email protected]> | 2021-03-15 12:48:07 +0100 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2021-03-20 15:51:20 +0100 |
commit | 35dedf15c04a605df4d4a09263b0b299e5161f86 (patch) | |
tree | c13f005abadfa26e6077f90c0a2b8f1bc5da0ae1 /minifiers | |
parent | 7ed56c6941edfdfa42eef2b779020b5d46ca194a (diff) | |
download | hugo-35dedf15c04a605df4d4a09263b0b299e5161f86.tar.gz hugo-35dedf15c04a605df4d4a09263b0b299e5161f86.zip |
deps: Bump github.com/tdewolff/minify/v2 v2.9.15
Fixes #8332
Diffstat (limited to 'minifiers')
-rw-r--r-- | minifiers/minifiers_test.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/minifiers/minifiers_test.go b/minifiers/minifiers_test.go index 1a2d56e30..97fe4e465 100644 --- a/minifiers/minifiers_test.go +++ b/minifiers/minifiers_test.go @@ -158,6 +158,8 @@ func TestBugs(t *testing.T) { }{ // https://github.com/gohugoio/hugo/issues/5506 {media.CSSType, " body { color: rgba(000, 000, 000, 0.7); }", "body{color:rgba(0,0,0,.7)}"}, + // https://github.com/gohugoio/hugo/issues/8332 + {media.HTMLType, "<i class='fas fa-tags fa-fw'></i> Tags", `<i class="fas fa-tags fa-fw"></i> Tags`}, } { var b bytes.Buffer |