delete debug print

This commit is contained in:
Leonid Pereverzin 2023-05-07 17:59:46 +03:00
parent 046bbda23a
commit ef54c02c41

View File

@ -13,9 +13,8 @@ private val DEFAULT_DOCUMENT_ROOT = "main.md"
public suspend fun buildDocument(documentDirectory: Directory): String {
val dependencyGraph = buildDependencyGraph(documentDirectory)
println(1)
val roooot: MdAstRoot = dependencyGraph.nodes[""]!!.mdAst
println(2)
return jacksonObjectMapper().writeValueAsString(roooot)
// TODO прикрутить html
}