Parse returns the parse tree for the HTML from the given Reader.
(r io.Reader)
| 166 | |
| 167 | // Parse returns the parse tree for the HTML from the given Reader. |
| 168 | func Parse(r io.Reader) (*html.Node, error) { |
| 169 | return html.Parse(r) |
| 170 | } |
| 171 | |
| 172 | // InnerText returns the text between the start and end tags of the object. |
| 173 | func InnerText(n *html.Node) string { |