clj-rss
clj-rss copied to clipboard
RSS link is not the same as atom rel=self
The link field in RSS is the link of the website, but this library also uses it to set this atom attribute https://github.com/yogthos/clj-rss/blob/master/src/clj_rss/core.clj#L137 which is supposed to be the URL of the feed itself
I see, sounds like adding an additional :url key would be the way to go then?
would work,' or maybe :feed-url to be less ambiguous
Good call, I've added the feature in this commit. Let me know if that looks good on your end and I can push out a new version. I've kept the original behavior when :feed-url is not specified for backwards compatibility.