hocjooker@gmail.com 1 vuosi sitten
vanhempi
commit
6c2d1770ac
1 muutettua tiedostoa jossa 1 lisäystä ja 9 poistoa
  1. 1 9
      main.go

+ 1 - 9
main.go

@@ -59,15 +59,7 @@ func main() {
 
 	doc.Find("link ~ meta").Each(func(i int, s *goquery.Selection) {
 		v, _ := s.Attr("property")
-		if v == "og:description" {
-			fmt.Println("og:description : ", s.AttrOr("content", ""))
-		} else if v == "og:title" {
-			fmt.Println("og:title : ", s.AttrOr("content", ""))
-		} else if v == "og:image" {
-			fmt.Println("og:image : ", s.AttrOr("content", ""))
-		} else if v == "product:price:currency" {
-			fmt.Println("currency : ", s.AttrOr("content", ""))
-		}
+		fmt.Println(v, "  : ", s.AttrOr("content", ""))
 	})
 
 	fmt.Println("Author : ")