diff --git a/plug-ins/index.html b/plug-ins/index.html index 49f3bcb..1baae44 100644 --- a/plug-ins/index.html +++ b/plug-ins/index.html @@ -312,6 +312,28 @@ $ ./kobaltw uploadJcenter All artifacts successfully uploaded +

Dokka

+ +

+ Dokka is Kotlin's documentation tool. The Kobalt Dokka plug-in allows you to launch it and configure it as follows: +

+
+    import com.beust.kobalt.plugin.dokka.dokka
+    // ...
+
+    dokka {
+        args("-output", "markdown")
+        linkMapping {
+            dir = "src/main/kotlin"
+            url = "https://github.com/cy6erGn0m/vertx3-lang-kotlin/blob/master/src/main/kotlin"
+            suffix = "#L"
+        }
+    }
+
+

+ You can then generate your documentation by running the dokka task. +

+