Functions Reference
Parsing Functions
parseFeed(content)
- Universal parser for any formatparseRssFeed(content)
- RSS parserparseAtomFeed(content)
- Atom parserparseJsonFeed(content)
- JSON Feed parserparseRdfFeed(content)
- RDF parserparseOpml(content)
- OPML parser
Generation Functions
generateRssFeed(data, options?)
- Create RSS feedsgenerateAtomFeed(data, options?)
- Create Atom feedsgenerateJsonFeed(data)
- Create JSON feedsgenerateOpml(data, options?)
- Create OPML files
INFO
XML-based generation functions (generateRssFeed
, generateAtomFeed
, generateOpml
) accept an optional options
parameter. For the available options, see the Styling documentation.
Detection Functions
detectRssFeed(content)
- Check if content is RSSdetectAtomFeed(content)
- Check if content is AtomdetectJsonFeed(content)
- Check if content is JSON FeeddetectRdfFeed(content)
- Check if content is RDF