aboutsummaryrefslogtreecommitdiff
path: root/plugins/gfm/src
diff options
context:
space:
mode:
authorVadim Mishenev <vad-mishenev@yandex.ru>2022-07-26 16:02:22 +0300
committerGitHub <noreply@github.com>2022-07-26 16:02:22 +0300
commit61de8f746eb0c5451f5584d6744c0925de45593f (patch)
tree8ba692b9ef668ccd4a6995fb9c1e422072d8b39e /plugins/gfm/src
parentddfce852a8ce8e81adc4d4ff3e9956b330965e63 (diff)
downloaddokka-61de8f746eb0c5451f5584d6744c0925de45593f.tar.gz
dokka-61de8f746eb0c5451f5584d6744c0925de45593f.tar.bz2
dokka-61de8f746eb0c5451f5584d6744c0925de45593f.zip
Give notice of alpha version for GFM, Javadoc, Jekyll, KaJ formats (#2550)
Diffstat (limited to 'plugins/gfm/src')
-rw-r--r--plugins/gfm/src/main/kotlin/org/jetbrains/dokka/gfm/GfmPlugin.kt9
1 files changed, 9 insertions, 0 deletions
diff --git a/plugins/gfm/src/main/kotlin/org/jetbrains/dokka/gfm/GfmPlugin.kt b/plugins/gfm/src/main/kotlin/org/jetbrains/dokka/gfm/GfmPlugin.kt
index 78597d44..f3c44dac 100644
--- a/plugins/gfm/src/main/kotlin/org/jetbrains/dokka/gfm/GfmPlugin.kt
+++ b/plugins/gfm/src/main/kotlin/org/jetbrains/dokka/gfm/GfmPlugin.kt
@@ -9,6 +9,7 @@ import org.jetbrains.dokka.gfm.location.MarkdownLocationProvider
import org.jetbrains.dokka.gfm.renderer.BriefCommentPreprocessor
import org.jetbrains.dokka.gfm.renderer.CommonmarkRenderer
import org.jetbrains.dokka.plugability.DokkaPlugin
+import org.jetbrains.dokka.renderers.PostAction
import org.jetbrains.dokka.transformers.pages.PageTransformer
class GfmPlugin : DokkaPlugin() {
@@ -38,4 +39,12 @@ class GfmPlugin : DokkaPlugin() {
providing { PackageListCreator(it, RecognizedLinkFormat.DokkaGFM) }
order { after(rootCreator) })
}
+
+ internal val alphaVersionNotifier by extending {
+ CoreExtensions.postActions providing { ctx ->
+ PostAction {
+ ctx.logger.warn("GFM output format is in Alpha version, use at your own risk, expect bugs and migration issues")
+ }
+ }
+ }
}