|
@@ -111,7 +111,7 @@ type RSSImage struct {
|
|
|
|
|
|
|
|
type RSSItem struct {
|
|
type RSSItem struct {
|
|
|
// Title is the title of the item.
|
|
// Title is the title of the item.
|
|
|
- Title string `xml:"rss title"`
|
|
|
|
|
|
|
+ Title RSSTitle `xml:"rss title"`
|
|
|
|
|
|
|
|
// Link is the URL of the item.
|
|
// Link is the URL of the item.
|
|
|
Link string `xml:"rss link"`
|
|
Link string `xml:"rss link"`
|
|
@@ -169,6 +169,11 @@ type RSSItem struct {
|
|
|
googleplay.GooglePlayItemElement
|
|
googleplay.GooglePlayItemElement
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+type RSSTitle struct {
|
|
|
|
|
+ Data string `xml:",chardata"`
|
|
|
|
|
+ Inner string `xml:",innerxml"`
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
type RSSAuthor struct {
|
|
type RSSAuthor struct {
|
|
|
XMLName xml.Name
|
|
XMLName xml.Name
|
|
|
Data string `xml:",chardata"`
|
|
Data string `xml:",chardata"`
|