I just tried to post a deeplink to a method inside of the Android documentation in a comment. I noticed that because of the format of the URL the link does not work correctly.
Here is the url in question:
http://developer.android.com/reference/android/content/Context.html#openFileOutput(java.lang.String, int)
it seems that the space in the parameters of the method seems to break the URL.
Is there some way to make this link(and ones like it) function properly that I've missed or do is this simply a limitation of the system?
If it is the latter I'd like to formally suggest that we try to come up with a way to allow URLs such as these to work properly.
EDIT: test
URL encoding the space does not seem to help all the way.
Another test:
Context.openFileOutput(String s, int i)
Ok, this one worked. Is there some way I can make it work in comments though?
