aboutsummaryrefslogtreecommitdiff
path: root/src/main.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.kt')
-rw-r--r--src/main.kt7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/main.kt b/src/main.kt
index f9b734a3..0f8cdfce 100644
--- a/src/main.kt
+++ b/src/main.kt
@@ -55,10 +55,11 @@ public fun main(args: Array<String>) {
context.createDocumentationModule(arguments.moduleName, module, packageSet)
}
- val signatureGenerator = KotlinSignatureGenerator()
+ val signatureGenerator = KotlinLanguageService()
val locationService = FoldersLocationService(arguments.outputDir)
- val formatter = HtmlFormatService(locationService, signatureGenerator)
+ val formatter = JekyllFormatService(locationService, signatureGenerator)
val generator = FileGenerator(signatureGenerator, locationService, formatter)
- generator.generate(documentation)
+ generator.buildPage(documentation)
+ generator.buildOutline(documentation)
Disposer.dispose(environment)
} \ No newline at end of file