diff options
author | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2017-05-16 20:44:28 +0300 |
---|---|---|
committer | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2017-05-18 16:02:54 +0300 |
commit | 4f4b86b873b7676979d3258030fdfc382e22a06b (patch) | |
tree | a727921e4a63277513a108d2263e4604eacb09a1 /core/src/test/kotlin/format | |
parent | f7f3eff54af925b307e3dbbf8eb8d731a0ba30b9 (diff) | |
download | dokka-4f4b86b873b7676979d3258030fdfc382e22a06b.tar.gz dokka-4f4b86b873b7676979d3258030fdfc382e22a06b.tar.bz2 dokka-4f4b86b873b7676979d3258030fdfc382e22a06b.zip |
Fix invalid line breaks in table cells for markdown formats
#KT-16234 fixed
Diffstat (limited to 'core/src/test/kotlin/format')
-rw-r--r-- | core/src/test/kotlin/format/MarkdownFormatTest.kt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/src/test/kotlin/format/MarkdownFormatTest.kt b/core/src/test/kotlin/format/MarkdownFormatTest.kt index 52a62656..e3f4bae7 100644 --- a/core/src/test/kotlin/format/MarkdownFormatTest.kt +++ b/core/src/test/kotlin/format/MarkdownFormatTest.kt @@ -364,6 +364,10 @@ class MarkdownFormatTest { verifyMarkdownNode("nestedLists") } + @Test fun newlineInTableCell() { + verifyMarkdownPackage("newlineInTableCell") + } + private fun buildMultiplePlatforms(path: String): DocumentationModule { val module = DocumentationModule("test") val options = DocumentationOptions("", "html", generateIndexPages = false, noStdlibLink = true) |