From dc179bf9a649d925e7e64dbcaf52a2187416a1d5 Mon Sep 17 00:00:00 2001 From: Kamil Doległo Date: Thu, 24 Sep 2020 14:16:13 +0200 Subject: Implement basic link resolution --- .../src/main/kotlin/templates/TemplateProcessor.kt | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'plugins/all-module-page/src/main/kotlin/templates/TemplateProcessor.kt') diff --git a/plugins/all-module-page/src/main/kotlin/templates/TemplateProcessor.kt b/plugins/all-module-page/src/main/kotlin/templates/TemplateProcessor.kt index cd144046..eafc3669 100644 --- a/plugins/all-module-page/src/main/kotlin/templates/TemplateProcessor.kt +++ b/plugins/all-module-page/src/main/kotlin/templates/TemplateProcessor.kt @@ -1,7 +1,9 @@ package org.jetbrains.dokka.allModulesPage.templates import kotlinx.coroutines.* +import org.jetbrains.dokka.base.templating.Command import org.jetbrains.dokka.plugability.DokkaContext +import org.jsoup.nodes.Element import java.io.File import java.nio.file.Files import java.nio.file.Path @@ -44,3 +46,9 @@ class DefaultTemplateProcessor( } } +data class TemplatingContext( + val input: File, + val output: File, + val element: Element, + val command: T, +) \ No newline at end of file -- cgit