From 455d74a6a6245969ebd7ec20071b691ed20a2628 Mon Sep 17 00:00:00 2001 From: Ilya Ryzhenkov Date: Fri, 19 Sep 2014 22:25:27 +0300 Subject: Convert content to RichString and establish resolution service for links. --- src/Resolution/ResolutionService.kt | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/Resolution/ResolutionService.kt (limited to 'src/Resolution') diff --git a/src/Resolution/ResolutionService.kt b/src/Resolution/ResolutionService.kt new file mode 100644 index 00000000..f13d1ee0 --- /dev/null +++ b/src/Resolution/ResolutionService.kt @@ -0,0 +1,5 @@ +package org.jetbrains.dokka + +public trait ResolutionService { + fun resolve(text: String): DocumentationNode +} \ No newline at end of file -- cgit