diff --git a/snark-document-builder/src/main/kotlin/DocumentBuilder.kt b/snark-document-builder/src/main/kotlin/DocumentBuilder.kt index 0692b0a..e462ae0 100644 --- a/snark-document-builder/src/main/kotlin/DocumentBuilder.kt +++ b/snark-document-builder/src/main/kotlin/DocumentBuilder.kt @@ -26,9 +26,8 @@ public suspend fun buildDocument(documentDirectory: Directory): String { val root: MdAstRoot = dependencyGraph.nodes[""]!!.mdAst - // return getHtml(jacksonObjectMapper().writeValueAsString(root)) + return getHtml(jacksonObjectMapper().writeValueAsString(root)) // return jacksonObjectMapper().writeValueAsString(root) - return root.toString() } public suspend fun buildDependencyGraph(root: Directory): DependencyGraph {