From 46b33710df5418fd3b668ea0753a8bd72f63c406 Mon Sep 17 00:00:00 2001 From: Mike Sinkovsky Date: Sat, 26 Jun 2021 01:29:17 +0500 Subject: Cleanup paragraphs and tables in GFM renderer (#1946) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * GFM renderer: cleanup paragraphs * GFM renderer: cleanup tables * GFM renderer: add tests for wrong header in table Table with extra cell in row is really generated by `all-modules-page` plugin * Remove commented-out lines * Add BriefCommentPreprocessor which inserts a line break between a signature and a brief comment Fixed a bug with `mapTransform` function which replaces table headers with their contents Co-authored-by: Kamil Doległo --- plugins/jekyll/api/jekyll.api | 1 + 1 file changed, 1 insertion(+) (limited to 'plugins/jekyll/api') diff --git a/plugins/jekyll/api/jekyll.api b/plugins/jekyll/api/jekyll.api index d36b70c2..28d01241 100644 --- a/plugins/jekyll/api/jekyll.api +++ b/plugins/jekyll/api/jekyll.api @@ -1,5 +1,6 @@ public final class org/jetbrains/dokka/jekyll/JekyllPlugin : org/jetbrains/dokka/plugability/DokkaPlugin { public fun ()V + public final fun getBriefCommentPreprocessor ()Lorg/jetbrains/dokka/plugability/Extension; public final fun getJekyllPreprocessors ()Lorg/jetbrains/dokka/plugability/ExtensionPoint; public final fun getPackageListCreator ()Lorg/jetbrains/dokka/plugability/Extension; public final fun getRenderer ()Lorg/jetbrains/dokka/plugability/Extension; -- cgit