]> git.earlybird.gay Git - today/commitdiff
don't try to minify js
authorearly <me@earlybird.gay>
Sun, 8 Sep 2024 00:04:49 +0000 (18:04 -0600)
committerearly <me@earlybird.gay>
Sun, 8 Sep 2024 00:04:49 +0000 (18:04 -0600)
htmltree/prettify.go

index 7bd4865e79938b734fb1229234540920dfceacab..33fbdd0e5675e00c8aa0cb4e62501c0e220e8ccb 100644 (file)
@@ -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, " ")