From 79a7a136bdc3a59d7bb3aebb51e565b58e2b789c Mon Sep 17 00:00:00 2001 From: Daniel Date: Tue, 29 Aug 2017 16:58:32 +0200 Subject: Fix README: outFormat in Maven must be outputFormat --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'README.md') diff --git a/README.md b/README.md index 383d238b..63bc6cbc 100644 --- a/README.md +++ b/README.md @@ -236,7 +236,7 @@ The available configuration options are shown below: data - html + html some/out/dir -- cgit From 428a95b391cf313f8a57d3cd27a81665cf92cba6 Mon Sep 17 00:00:00 2001 From: Flamenco Date: Wed, 10 Jan 2018 17:41:07 -0500 Subject: Add information on suppress package option --- README.md | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'README.md') 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 + } } ``` -- cgit