Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Kotlin KDoc: Documentation?

I have seen here, here and there references to KDoc, the JavaDoc utility equivalent for Kotlin.

However, I cannot find any documentation on how to use it, let alone how to customize it or integrate it in Maven or Gradle.

I know the Kotlin API doc is generated using KDoc since the page source has the following HTML comment: <!-- Generated by kdoc on Sun Jul 06 20:27:33 UTC 2014 -->

So, is there any documentation I can refer to as to how to use KDoc ?

like image 296
Salomon BRYS Avatar asked Feb 15 '15 15:02

Salomon BRYS


1 Answers

It looks like Kdoc was put on the back burner in favour of Dokka. https://github.com/Kotlin/dokka

Source: https://devnet.jetbrains.com/thread/458339;jsessionid=B2038D70DCC9004181B20D6D4EA2B2A3

like image 120
sksamuel Avatar answered Nov 16 '22 20:11

sksamuel