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
Some type names contain the + character, which gets interpreted as a space in a URL, e.g.:
+
https://lr.soh.ntu.edu.sg/~bond/cgi-bin/ERG_mo/showtype.cgi?typ=cp_prop+ques_verb
Escaping it as %2b works:
%2b
https://lr.soh.ntu.edu.sg/~bond/cgi-bin/ERG_mo/showtype.cgi?typ=cp_prop%2bques_verb
The text was updated successfully, but these errors were encountered:
properly encode URLS, closes #20
50985d4
fcbond
No branches or pull requests
Some type names contain the
+
character, which gets interpreted as a space in a URL, e.g.:https://lr.soh.ntu.edu.sg/~bond/cgi-bin/ERG_mo/showtype.cgi?typ=cp_prop+ques_verb
Escaping it as
%2b
works:https://lr.soh.ntu.edu.sg/~bond/cgi-bin/ERG_mo/showtype.cgi?typ=cp_prop%2bques_verb
The text was updated successfully, but these errors were encountered: