/**
* @see [Documentation](http://www.example.com)
**/
class MyClass {
}
This code generates a warning:
Unresolved link to Documentation in doc comment of xxx.MyClass (MyClass.kt:yy)
As documented in https://kotlinlang.org/docs/reference/kotlin-doc.html the @see tag is followed by an identifier, not by free-form Markdown text.
That document doesn't reference any way to link to external URLs. Is there any way to do it now?
Same question, I'd like to put a link into an @see tag or have a viable alternative.
@see <a href="http://www.example.com">Documentation</a>
Most helpful comment
That document doesn't reference any way to link to external URLs. Is there any way to do it now?