From c2afb348bb0d3dd60d336aa312b5fcedfb31b966 Mon Sep 17 00:00:00 2001 From: Alex Waters Date: Mon, 1 May 2017 14:00:31 +0930 Subject: Fix Markdown list spacing, ordering, and erroneous new lines --- core/src/test/kotlin/format/MarkdownFormatTest.kt | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'core/src/test/kotlin') diff --git a/core/src/test/kotlin/format/MarkdownFormatTest.kt b/core/src/test/kotlin/format/MarkdownFormatTest.kt index 999d739b..217bfd09 100644 --- a/core/src/test/kotlin/format/MarkdownFormatTest.kt +++ b/core/src/test/kotlin/format/MarkdownFormatTest.kt @@ -356,6 +356,14 @@ class MarkdownFormatTest { verifyMarkdownNode("tokensInHeaders") } + @Test fun unorderedLists() { + verifyMarkdownNode("unorderedLists") + } + + @Test fun nestedLists() { + verifyMarkdownNode("nestedLists") + } + private fun buildMultiplePlatforms(path: String): DocumentationModule { val module = DocumentationModule("test") val options = DocumentationOptions("", "html", generateIndexPages = false) -- cgit