From 5eeb2bbeb8c71ae813808ee0e8d09293c4abe1c1 Mon Sep 17 00:00:00 2001 From: Ignat Beresnev Date: Thu, 19 Jan 2023 04:10:57 +0100 Subject: Revise README documentation for examples and plugins (#2736) --- examples/plugin/hide-internal-api/README.md | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) (limited to 'examples/plugin/hide-internal-api') diff --git a/examples/plugin/hide-internal-api/README.md b/examples/plugin/hide-internal-api/README.md index 59d27c79..fe02e025 100644 --- a/examples/plugin/hide-internal-api/README.md +++ b/examples/plugin/hide-internal-api/README.md @@ -1 +1,18 @@ -This plugin uses [Dokka plugin template](https://github.com/Kotlin/dokka-plugin-template). +# Hide Internal API plugin example + +This project represents a simple Dokka Plugin that was developed step-by-step in the +[Sample plugin](https://kotlin.github.io/dokka/1.7.20/developer_guide/plugin-development/sample-plugin-tutorial/) +tutorial. This is a frequent request with varying requirements. + +The plugin excludes any declaration that is marked with `org.jetbrains.dokka.internal.test.Internal` annotation. +The annotation itself is not provided in this project and is instead matched by the fully qualified name only. +You can change it to your own internal annotation or to some other marker that suits you. + +To learn how to install and debug it locally, +[see documentation](https://kotlin.github.io/dokka/1.7.20/developer_guide/plugin-development/sample-plugin-tutorial/#debugging). + +___ + +Generally, you can use this project to get an idea of how to create Dokka plugins as it covers the basics of getting started. + +This project was created from the [Dokka plugin template](https://github.com/Kotlin/dokka-plugin-template). -- cgit