Kotlin / dokka

API documentation engine for Kotlin

Home Page:https://kotl.in/dokka

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Missed KDoc link if a comment starts with it

vmishenev opened this issue · comments

   /**
     * [Unresolved]
     * [greet]
     */
    fun greet() {
        println("Hello $name!")
    }

Actual behaviour
image
where Unresolved leads to fun greet().
[greet] is missed.

Expected
Unresolved should be rendered as a plain text.
greet should be rendered as a link.