Dokka: Unresolved link to xxx warning for external links

Created on 23 May 2016  路  4Comments  路  Source: Kotlin/dokka

/**
  * @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)

Most helpful comment

That document doesn't reference any way to link to external URLs. Is there any way to do it now?

All 4 comments

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>
Was this page helpful?
0 / 5 - 0 ratings