diff --git a/regular.go b/regular.go index 8e0ed69..10b7af5 100644 --- a/regular.go +++ b/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