Skip to content

Functions Reference

Parsing Functions

  • parseFeed(content) - Universal parser for any format
  • parseRssFeed(content) - RSS parser
  • parseAtomFeed(content) - Atom parser
  • parseJsonFeed(content) - JSON Feed parser
  • parseRdfFeed(content) - RDF parser
  • parseOpml(content) - OPML parser

Generation Functions

  • generateRssFeed(data, options?) - Create RSS feeds
  • generateAtomFeed(data, options?) - Create Atom feeds
  • generateJsonFeed(data) - Create JSON feeds
  • generateOpml(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 RSS
  • detectAtomFeed(content) - Check if content is Atom
  • detectJsonFeed(content) - Check if content is JSON Feed
  • detectRdfFeed(content) - Check if content is RDF