diff options
author | Ilya Ryzhenkov <orangy@jetbrains.com> | 2014-09-25 22:20:58 +0400 |
---|---|---|
committer | Ilya Ryzhenkov <orangy@jetbrains.com> | 2014-09-25 22:20:58 +0400 |
commit | f7bab78839cea5674658a6a0298f88ef5ccca019 (patch) | |
tree | 51d17c02f8f935b26a9c9d85905fc33c18ebd6a1 /test/src/markdown/Specification.kt | |
parent | a070217e942a16ed7b5ee63e98a4183788c8e660 (diff) | |
download | dokka-f7bab78839cea5674658a6a0298f88ef5ccca019.tar.gz dokka-f7bab78839cea5674658a6a0298f88ef5ccca019.tar.bz2 dokka-f7bab78839cea5674658a6a0298f88ef5ccca019.zip |
Markdown, sections, styles and lots more.
Diffstat (limited to 'test/src/markdown/Specification.kt')
-rw-r--r-- | test/src/markdown/Specification.kt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/src/markdown/Specification.kt b/test/src/markdown/Specification.kt new file mode 100644 index 00000000..e0cda024 --- /dev/null +++ b/test/src/markdown/Specification.kt @@ -0,0 +1,10 @@ +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")) +})
\ No newline at end of file |