aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlamenco <Flamenco@users.noreply.github.com>2018-01-10 17:41:07 -0500
committerSimon Ogorodnik <Simon.Ogorodnik@jetbrains.com>2018-02-01 20:45:39 +0300
commit428a95b391cf313f8a57d3cd27a81665cf92cba6 (patch)
tree3d5db43bbfe804fe9367987d945dc2186f12598d
parenta9230650654229443c1e4d0896188f887e43077d (diff)
downloaddokka-428a95b391cf313f8a57d3cd27a81665cf92cba6.tar.gz
dokka-428a95b391cf313f8a57d3cd27a81665cf92cba6.tar.bz2
dokka-428a95b391cf313f8a57d3cd27a81665cf92cba6.zip
Add information on suppress package option
-rw-r--r--README.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/README.md b/README.md
index 158ce430..a50866bb 100644
--- a/README.md
+++ b/README.md
@@ -132,6 +132,11 @@ dokka {
reportUndocumented = true // Emit warnings about not documented members
includeNonPublic = false
}
+ // Suppress a package
+ packageOptions {
+ prefix = "kotlin.internal" // will match kotlin.internal and all sub-packages of it
+ suppress = true
+ }
}
```