mirror of
https://github.com/gopl-zh/gopl-zh.github.com.git
synced 2024-12-25 14:28:58 +00:00
ch5-10: fmt code
This commit is contained in:
parent
d7c078a7f2
commit
1c0ac14e5e
@ -47,7 +47,8 @@ func soleTitle(doc *html.Node) (title string, err error) {
|
||||
}()
|
||||
// Bail out of recursion if we find more than one nonempty title.
|
||||
forEachNode(doc, func(n *html.Node) {
|
||||
if n.Type == html.ElementNode && n.Data == "title" && n.FirstChild != nil {
|
||||
if n.Type == html.ElementNode && n.Data == "title" &&
|
||||
n.FirstChild != nil {
|
||||
if title != "" {
|
||||
panic(bailout{}) // multiple titleelements
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user