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
|
//Item struct for each Item in the Channel
|
||||||
type Item struct {
|
type Item struct {
|
||||||
Title string `xml:"title"`
|
Title string `xml:"title"`
|
||||||
Link string `xml:"link"`
|
Link string `xml:"link"`
|
||||||
Comments string `xml:"comments"`
|
Comments string `xml:"comments"`
|
||||||
PubDate Date `xml:"pubDate"`
|
PubDate Date `xml:"pubDate"`
|
||||||
GUID string `xml:"guid"`
|
GUID string `xml:"guid"`
|
||||||
Category []string `xml:"category"`
|
Category []string `xml:"category"`
|
||||||
Enclosure []ItemEnclosure `xml:"enclosure"`
|
Enclosure []ItemEnclosure `xml:"enclosure"`
|
||||||
Description string `xml:"description"`
|
Description string `xml:"description"`
|
||||||
Author string `xml:"author"`
|
Author string `xml:"author"`
|
||||||
Content string `xml:"content"`
|
Content string `xml:"content"`
|
||||||
FullText string `xml:"full-text"`
|
ContentEncoded string `xml:"content:encoded"`
|
||||||
|
FullText string `xml:"full-text"`
|
||||||
}
|
}
|
||||||
|
|
||||||
//Regular parses regular feeds
|
//Regular parses regular feeds
|
||||||
|
|
Loading…
Reference in a new issue