diff options
author | Ilya Ryzhenkov <orangy@jetbrains.com> | 2014-10-13 20:15:56 +0400 |
---|---|---|
committer | Ilya Ryzhenkov <orangy@jetbrains.com> | 2014-10-13 20:15:56 +0400 |
commit | 66e5e16bbe4b73531a34ad033d49350dd019d182 (patch) | |
tree | c32b9728a87763ca3cdd8b2239c6d9acec6cbdf9 | |
parent | 1cb3af902c8f2e3f73e7c78781373f1ab5788772 (diff) | |
download | dokka-66e5e16bbe4b73531a34ad033d49350dd019d182.tar.gz dokka-66e5e16bbe4b73531a34ad033d49350dd019d182.tar.bz2 dokka-66e5e16bbe4b73531a34ad033d49350dd019d182.zip |
Switch back to KotlinWebSiteFormatter
-rw-r--r-- | src/main.kt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.kt b/src/main.kt index e2ea0ce7..287664a3 100644 --- a/src/main.kt +++ b/src/main.kt @@ -98,7 +98,8 @@ 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 = HtmlFormatService(locationService, signatureGenerator, templateService) + val formatter = KotlinWebsiteFormatService(locationService, signatureGenerator) val generator = FileGenerator(signatureGenerator, locationService, formatter) print("Generating pages... ") generator.buildPage(documentation) |