From a9538f2f49e15b04340215d8d670557ced6f132d Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Fri, 27 Feb 2015 16:40:08 +0100 Subject: use JSoup to convert HTML markup in javadoc to content tree --- src/Formats/MarkdownFormatService.kt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/Formats') diff --git a/src/Formats/MarkdownFormatService.kt b/src/Formats/MarkdownFormatService.kt index cc7d7170..8809fa96 100644 --- a/src/Formats/MarkdownFormatService.kt +++ b/src/Formats/MarkdownFormatService.kt @@ -27,9 +27,7 @@ public open class MarkdownFormatService(locationService: LocationService, return "`$code`" } - override public fun formatList(text: String): String { - return text - } + override public fun formatList(text: String): String = text + "\n" override fun formatListItem(text: String): String { return "* $text" -- cgit