diff options
author | Dmitry Jemerov <yole@jetbrains.com> | 2015-03-09 18:00:54 +0100 |
---|---|---|
committer | Dmitry Jemerov <yole@jetbrains.com> | 2015-03-09 18:00:54 +0100 |
commit | 6f1a379aa2f494cb4e3e0d3a0dc6b5f8b625fa1a (patch) | |
tree | ee571aef240889b8bf8b7b4a374dbfe615d084c1 /test/src/markdown/ParserTest.kt | |
parent | 8f159151f182f4561594a4c23c22e82830bcc9b4 (diff) | |
download | dokka-6f1a379aa2f494cb4e3e0d3a0dc6b5f8b625fa1a.tar.gz dokka-6f1a379aa2f494cb4e3e0d3a0dc6b5f8b625fa1a.tar.bz2 dokka-6f1a379aa2f494cb4e3e0d3a0dc6b5f8b625fa1a.zip |
remove unused Markdown to HTML conversion code
Diffstat (limited to 'test/src/markdown/ParserTest.kt')
-rw-r--r-- | test/src/markdown/ParserTest.kt | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/test/src/markdown/ParserTest.kt b/test/src/markdown/ParserTest.kt index 80ee7332..50c18f08 100644 --- a/test/src/markdown/ParserTest.kt +++ b/test/src/markdown/ParserTest.kt @@ -3,7 +3,6 @@ package org.jetbrains.dokka.tests import org.junit.Test import org.jetbrains.dokka import org.jetbrains.dokka.toTestString -import org.jetbrains.dokka.toHtml import org.jetbrains.dokka.parseMarkdown import org.junit.Ignore @@ -14,8 +13,6 @@ Ignore public class ParserTest { val markdownTree = parseMarkdown(text) println("AST: ---") println(markdownTree.toTestString()) - println("HTML: ---") - println(markdownTree.toHtml()) println() } |