content:encoded

This commit is contained in:
Cat /dev/Nulo 2022-10-12 12:37:19 -03:00
parent 81ac155986
commit f25f0ae1f1

View file

@ -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