#129 KDoc (HTML) not suppressed if `@property` is ...
# dokka
u
#129 KDoc (HTML) not suppressed if
@property
is part of doc comment [Kotlin/dokka] Issue created by codeprogression If I document a class with
@property
and
@suppress
, the class is still generated in the HTML (but not JavaDoc). Changing
@property
to
@param
will enable the class to be suppressed from generation. KDoc entry not suppressed:
Copy code
/**
• @property foo A Foo
• @suppress
     */
     class Example(val foo: Foo)
KDoc entry suppressed:
Copy code
kotlin
/**
• @param foo A Foo
• @suppress
     */
     class Example(val foo: Foo)