Created
August 21, 2024 18:25
-
-
Save AbeEstrada/64236f0485922f8450d775089da1db58 to your computer and use it in GitHub Desktop.
Detect rss/atom feed url
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[...document.querySelectorAll( 'link[rel~=alternate][type="application/atom+xml"],' + 'link[rel~=alternate][type="application/rss+xml"],' + 'a[rel~=alternate][type="application/atom+xml"],' + 'a[rel~=alternate][type="application/rss+xml"]' )].map(link => link.href); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment