From d3421d01f7fa9b3385b516eae5ae3895a73618de Mon Sep 17 00:00:00 2001 From: kisenka Date: Fri, 10 Oct 2014 20:32:15 +0400 Subject: Change formatter to KotlinWebsiteFormatService --- src/main.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/main.kt b/src/main.kt index d30f3035..970bbd8c 100644 --- a/src/main.kt +++ b/src/main.kt @@ -64,7 +64,7 @@ public fun main(args: Array) { val locationService = FoldersLocationService(arguments.outputDir) val templateService = HtmlTemplateService.default("/dokka/styles/style.css") - val formatter = HtmlFormatService(locationService, signatureGenerator, templateService) + val formatter = KotlinWebsiteFormatService(locationService, signatureGenerator) val generator = FileGenerator(signatureGenerator, locationService, formatter) print("Building pages... ") generator.buildPage(documentation) -- cgit