gofeed
gofeed copied to clipboard
Content parsed into Description
I got a feed https://www.williamlong.info/rss.xml that gofeed would parse it's article content as description and content == ""

package main
import (
"fmt"
"github.com/mmcdole/gofeed"
)
func main() {
feed, _ :=gofeed.NewParser().ParseURL("https://www.williamlong.info/rss.xml")
fmt.Println("content:", feed.Items[0].Content)
fmt.Println("description:", feed.Items[0].Description)
}
There are no 'content' fields in that feed. Only descriptions. I think it's functioning to spec.
@gonejack based on @rodmcelrath's comment, I'm going to close this issue. Re-open if you feel something is incorrect.