diff options
author | kisenka <qtuzov@gmail.com> | 2014-10-10 20:32:15 +0400 |
---|---|---|
committer | kisenka <qtuzov@gmail.com> | 2014-10-10 20:32:15 +0400 |
commit | d3421d01f7fa9b3385b516eae5ae3895a73618de (patch) | |
tree | 6c0328ba26545aefaa6c82613c0374c50326c45b /src/main.kt | |
parent | 290d5a950c0909310cef64937dc64c8fd98ff473 (diff) | |
download | dokka-d3421d01f7fa9b3385b516eae5ae3895a73618de.tar.gz dokka-d3421d01f7fa9b3385b516eae5ae3895a73618de.tar.bz2 dokka-d3421d01f7fa9b3385b516eae5ae3895a73618de.zip |
Change formatter to KotlinWebsiteFormatService
Diffstat (limited to 'src/main.kt')
-rw-r--r-- | src/main.kt | 2 |
1 files changed, 1 insertions, 1 deletions
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<String>) { 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) |