KDoc has the [`@suppress` tag](https://android.googlesource.com/platform/frameworks/support/+/refs/heads/androidx-main/docs/kdoc_guidelines.md#hiding-documentation) which allows to hide documentation for corresponding API element. Two areas we can consider for not showing our internal API: 1. Annotator in McJava could also annotate generated Kotlin DSL. 2. We can add the `@suppress` tag in the handwritten code where we use `@Internal` annotation.
KDoc has the
@suppresstag which allows to hide documentation for corresponding API element.Two areas we can consider for not showing our internal API:
@suppresstag in the handwritten code where we use@Internalannotation.