content:encoded
This commit is contained in:
parent
81ac155986
commit
f25f0ae1f1
1 changed files with 12 additions and 11 deletions
23
regular.go
23
regular.go
|
@ -25,17 +25,18 @@ type ItemEnclosure struct {
|
|||
|
||||
//Item struct for each Item in the Channel
|
||||
type Item struct {
|
||||
Title string `xml:"title"`
|
||||
Link string `xml:"link"`
|
||||
Comments string `xml:"comments"`
|
||||
PubDate Date `xml:"pubDate"`
|
||||
GUID string `xml:"guid"`
|
||||
Category []string `xml:"category"`
|
||||
Enclosure []ItemEnclosure `xml:"enclosure"`
|
||||
Description string `xml:"description"`
|
||||
Author string `xml:"author"`
|
||||
Content string `xml:"content"`
|
||||
FullText string `xml:"full-text"`
|
||||
Title string `xml:"title"`
|
||||
Link string `xml:"link"`
|
||||
Comments string `xml:"comments"`
|
||||
PubDate Date `xml:"pubDate"`
|
||||
GUID string `xml:"guid"`
|
||||
Category []string `xml:"category"`
|
||||
Enclosure []ItemEnclosure `xml:"enclosure"`
|
||||
Description string `xml:"description"`
|
||||
Author string `xml:"author"`
|
||||
Content string `xml:"content"`
|
||||
ContentEncoded string `xml:"content:encoded"`
|
||||
FullText string `xml:"full-text"`
|
||||
}
|
||||
|
||||
//Regular parses regular feeds
|
||||
|
|
Loading…
Reference in a new issue