Dutch Ilya Lichtenstein

Results 2 comments of Dutch Ilya Lichtenstein

For those looking for a workaround, re-parsing the content of the noscript tag seems to do the trick. ```go s.Find("noscript").SetHtml(s.Find("noscript").Text()) ```

`s` in my example is any `*goquery.Selection`. Just add that line after loading the document ```go package main import ( "fmt" "strings" "github.com/PuerkitoBio/goquery" ) const data = `click this link`...