I'm just trying to generate a documentation using ...
# dokka
c
I'm just trying to generate a documentation using dokka. It's working fine so far, but on method documentation I'm missing everything that's written or annotated (e.g.
@param
,
@return
)
after the first line of the KDoc. Does this sound familiar? What am I doing wrong?
c
You can click on the method name to see the full documentation, the list view only shows the first line
c
I just get an anchor linked. It worked once, but now it doesn't. 😕
Okay, I found out why. I'm suppressing the interface which method's are documented. Another implementation of that said interface isn't suppressed but only showing the first line. Link is not working due to that
@suppress
. Thank you for pointing me to the correct direction 👍