Install & Compatibility
Where this runs
No compatibility data collected yet for this library.
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
feeds
✓ github.com/gorilla/feeds
Create and output an RSS feed.
package main
import (
"fmt"
"github.com/gorilla/feeds"
"time"
)
func main() {
feed := &feeds.Feed{
Title: "My Feed",
Link: &feeds.Link{Href: "https://example.com"},
Description: "A test feed",
Created: time.Now(),
}
rss, _ := feed.ToRss()
fmt.Println(rss)
}
Debug
Known issues
No known issues recorded.
Upgrade
Version history
1.2.0latest on pkg.go.dev
Audit
Dependencies
No dependency data recorded yet.