Fundamentally, I want to create this link in a comment and have it go to the right place: String(byte[],Charset)
source:
[`String(byte[],Charset)`](http://developer.android.com/reference/java/lang/String.html#String(byte[],%20java.nio.charset.Charset))
Two issues emerge:
- The actual link strips the square brackets (presumably because they're improperly encoded), this is livable but undesirable, I can url-encode them myself
- Comments incorrectly fail to escape the brackets, leading to a messy rendering of:
[String(byte[],Charset)](http://developer.android.com/reference/java/lang/String.html#String(byte%5B%5D,%20java.nio.charset.Charset))
Without the code format I recognize it's possible to escape the slashes, rendering correctly as String(byte[],Charset)
However, with inline code formatting and escaped slashes, I simply see the slashes:
[String(byte\[\],Charset)](http://developer.android.com/reference/java/lang/String.html#String(byte%5B%5D,%20java.nio.charset.Charset))
String(byte[],Charset)String(byte\[\],Charset)still fails.