We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
An OPML feed is a way for how to integrate many feeds into one, sort of like merging many feeds into one.
A OPML feed can be imported the same way as a normal feed...
const feed = await extract("https://example.com/feeds.opml");
...and can almost be read the same too...
interface OPMLData { title: String; feeds: OPMLFeed[]; entries: OPMLEntry[]; } interface OPMLFeed { title: String; link: String; } interface OPMLEntry { id: String; feed: String; title: String; link: String; description: String; published: ISO Datetime String; }
A mock OPML feed can be made by passing an array of feed URLs to the extract function...
extract
const feed = await extract([ "https://example.com/feed.rss", "https://foobar.com/feed.atom" ]);
extractFromOpml
extractFromJson
extractFromXml
The text was updated successfully, but these errors were encountered:
@theycallhermax thank you for your recommendation. This is really useful feature. I will have plan to try implementing.
Sorry, something went wrong.
No branches or pull requests
An OPML feed is a way for how to integrate many feeds into one, sort of like merging many feeds into one.
Possible implementation
A OPML feed can be imported the same way as a normal feed...
...and can almost be read the same too...
A mock OPML feed can be made by passing an array of feed URLs to the
extract
function...Things that would be done post-implementation
extractFromOpml
API would need to be introduced.extractFromJson
andextractFromXml
) would need to be updated to support the mock OPML generation support.The text was updated successfully, but these errors were encountered: