I want to be able to look to see whether the page at a user-entered url contains something similar to:
<link rel="alternate" type="application/rss+xml" ... href="http://feeds.example.com/MyBlog"/>
that way I can eliminate one option of parsing for an atom or rss feed url.
is there any good way of doing this? do I have to make my server parse the entire html of the user's url and muck through all of it?
I would need the url in a variable to use after parsing