aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/main.kt3
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)