From dd017a44ed7baae83f4f09a92d9691231f424eaa Mon Sep 17 00:00:00 2001 From: BarkingBad <32793002+BarkingBad@users.noreply.github.com> Date: Fri, 13 Dec 2019 14:01:25 +0100 Subject: Add abstract structure for MD/HTML comments and MD parser --- core/src/test/kotlin/markdown/ParserTest.kt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'core/src/test/kotlin/markdown') diff --git a/core/src/test/kotlin/markdown/ParserTest.kt b/core/src/test/kotlin/markdown/ParserTest.kt index b0ec68ff..e5944e17 100644 --- a/core/src/test/kotlin/markdown/ParserTest.kt +++ b/core/src/test/kotlin/markdown/ParserTest.kt @@ -1,17 +1,17 @@ package org.jetbrains.dokka.tests import org.junit.Test -import org.jetbrains.dokka.toTestString -import org.jetbrains.dokka.parseMarkdown +//import org.jetbrains.dokkatoTestString +//import org.jetbrains.dokka.parseMarkdown import org.junit.Ignore @Ignore public class ParserTest { fun runTestFor(text : String) { println("MD: ---") println(text) - val markdownTree = parseMarkdown(text) +// val markdownTree = parseMarkdown(text) println("AST: ---") - println(markdownTree.toTestString()) +// println(markdownTree.toTestString()) println() } -- cgit