Documentation
¶
Overview ¶
Package rss defines struct types, constants, and helper functions related to the site's RSS feed.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Channel ¶
type Channel struct {
Title string `xml:"title"`
Link string `xml:"link"`
Description string `xml:"description"`
Language string `xml:"language"`
Image Image `xml:"image"`
Items []Item `xml:"item"`
}
Channel is used for marshalling data into the blog's RSS feed.
type Description ¶
type Image ¶
type Image struct {
Title string `xml:"title"`
Link string `xml:"link"`
URL string `xml:"url"`
Width int `xml:"width"`
Height int `xml:"height"`
}
Image is used to display an image when aggregators present a field.
Click to show internal directories.
Click to hide internal directories.