mirror of
https://github.com/avelino/awesome-go.git
synced 2024-11-28 16:56:26 +00:00
fix comment
This commit is contained in:
parent
8e5c9cbaa9
commit
6c7021c279
9
main.go
9
main.go
@ -5,14 +5,15 @@ import (
|
||||
"bytes"
|
||||
"errors"
|
||||
"fmt"
|
||||
"github.com/avelino/awesome-go/pkg/markdown"
|
||||
cp "github.com/otiai10/copy"
|
||||
template2 "html/template"
|
||||
"net/url"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"text/template"
|
||||
|
||||
"github.com/avelino/awesome-go/pkg/markdown"
|
||||
cp "github.com/otiai10/copy"
|
||||
|
||||
"github.com/PuerkitoBio/goquery"
|
||||
"github.com/avelino/awesome-go/pkg/slug"
|
||||
)
|
||||
@ -241,8 +242,8 @@ func extractCategory(doc *goquery.Document, selector string) (*Category, error)
|
||||
doc.Find(selector).EachWithBreak(func(_ int, selCatHeader *goquery.Selection) bool {
|
||||
selDescr := selCatHeader.NextFiltered("p")
|
||||
// FIXME: bug. this would select links from all neighboring
|
||||
// sub-categories until the next category. To prevent this we should
|
||||
// find only first ul
|
||||
// sub-categories until the next category. To prevent this we should
|
||||
// find only first ul
|
||||
ul := selCatHeader.NextFilteredUntil("ul", "h2")
|
||||
|
||||
var links []Link
|
||||
|
Loading…
Reference in New Issue
Block a user