Working on parsing downloaded mark data

This commit is contained in:
Brian Buller 2017-09-21 16:53:21 -05:00
parent 11770850b8
commit c1a96b13bc
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ func (b *Bookmark) DownloadDetail() error {
// For each item, check the 'name' attr
if v, has := s.Attr("name"); has {
if v == "description" {
str := s.Get(i)
str := s.Data
fmt.Println(str)
//b.Desc = s.Get(i)
}