(doc *goquery.Document)
| 325 | } |
| 326 | |
| 327 | func handleNextLine(doc *goquery.Document) *goquery.Document { |
| 328 | for _, tag := range nextlineTag { |
| 329 | doc.Find(tag).Each(func(i int, selection *goquery.Selection) { |
| 330 | selection.BeforeHtml("\n\n") |
| 331 | selection.AfterHtml("\n\n") |
| 332 | }) |
| 333 | } |
| 334 | return doc |
| 335 | } |
| 336 | |
| 337 | func getInnerHtml(selection *goquery.Selection) (html string) { |
| 338 | var err error |