blob: 429317c2c9348f97bf08538248d6f2142c888753 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package org.jetbrains.kmark.test
import org.junit.runner.*
import org.jetbrains.kmark.test.*
import org.jetbrains.dokka.*
//[RunWith(javaClass<MarkdownTestRunner>())]
class Specification : MarkdownSpecification("test/data/markdown/spec.txt", {
// markdownToHtml(it.replace("→", "\t"))
""
})
|