When used in Dokka, on includes, it imports the Markdown using this parser. When you get to a unordered list item (maybe the same for ordered), then it thinks that the text of the list item is a new paragraph.
* something
is parsed as unordered list, list item, paragraph, text "something"
When used in Dokka, on includes, it imports the Markdown using this parser. When you get to a unordered list item (maybe the same for ordered), then it thinks that the text of the list item is a new paragraph.
is parsed as
unordered list
,list item
,paragraph
,text "something"
that seems wrong and breaks how the input is seen by Dokka. Causes this bug: https://github.com/Kotlin/dokka/issues/71