sgoldenb

Results 2 comments of sgoldenb

You can remove the namespaces with a function like this. ``` func removeNamespace(n *xmlquery.Node) { n.Prefix = "" for child := n.FirstChild; child != nil; child = child.NextSibling { removeNamespace(child)...

Yep that is what i used. Thanks for having a look at it.