Has anyone ran into issues with `@property` when w...
# dokka
c
Has anyone ran into issues with
@property
when writing KDoc? Using the Kotlin plugin for Android Studio it appears to break the generation of documentation for the tooltip window. Essentially everything after
@property
does not display.
s
Separate everything after it from
@property
with empty line
@property is a title line of markdown paragraph
But looks like there is some bug in parser
Everything after @property comes to it’s documentation, but not to documentation of class
But why you need to write some docs after it?
c
The documentation mentions using
@property
to document properties of a class: https://kotlinlang.org/docs/reference/kotlin-doc.html so it looks like it should be able to be used inline.