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
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.
<textarea>
The text was updated successfully, but these errors were encountered:
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.
Sorry, something went wrong.
You are correct.
Whitespaces are encoded as +.
+
URL-Encoding is a horrible mess.
No branches or pull requests
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.The text was updated successfully, but these errors were encountered: