laserchicken
laserchicken copied to clipboard
Batch adding RSS feeds
trafficstars
It would be nice to be able to add multiple feeds at once, since I'd like to take all the feeds from my previous feed reader to laserchicken.
I think it would suffice to have a <textarea> where I can paste all the URLs separated by newlines.
This could be done by having the backend split the field value around whitespace. There's no unencoded whitespace allowed in a URL, is there?
In that case, #10 would get fixed for free.
You are correct.
Whitespaces are encoded as +.
URL-Encoding is a horrible mess.