From: early Date: Sun, 8 Sep 2024 00:04:49 +0000 (-0600) Subject: don't try to minify js X-Git-Url: https://git.earlybird.gay/?a=commitdiff_plain;h=c462cf9c44b0245417ddd7b89f33edf7bbee4663;p=today don't try to minify js --- diff --git a/htmltree/prettify.go b/htmltree/prettify.go index 7bd4865..33fbdd0 100644 --- a/htmltree/prettify.go +++ b/htmltree/prettify.go @@ -69,6 +69,9 @@ func Minify() func(root *html.Node) { if n.Type == html.ElementNode && n.Data == "pre" { return true, nil } + if n.Type == html.ElementNode && n.Data == "script" { + return true, nil + } if n.Type == html.TextNode { n.Data = unindentRegexp.ReplaceAllString(n.Data, "") n.Data = despaceRegexp.ReplaceAllString(n.Data, " ")