This works .... a little bit, but still not quite as expected:
/** Here comes a List:
- Item 1
- Item 2
- Item 3
Even more Text.
*/In this case,
all the list items and the following paragraph are wrapped in a <pre> tag, no actual <li> tags are generated.
Now, if I change the docs to this:
/** Here comes a List:
- Item 1
- Item 2
- Item 3
Even more Text.
*/I get indeed a bullet list, but now the code intendation looks awful, and in addition, the following line is appended to the list, with no <br> despite adding two spaces at the end of the line.
OK, let's try to enforce a new paragraph by adding a further empty line:
/** Here comes a List:
- Item 1
- Item 2
- Item 3
Even more Text.
*/Now, the output is even more strange: while I still get a bullet list, the last line of the bullet list is now wrapped in a paragraph, and also the very last line is added to the last <li> tag, and
additionally wrapped with <pre><code>. Does not seem to matter if the last line is intended or not.
So it seems to me that there is something wrong here. Bullet Lists generated by markdown seem to have problems with intendation before the "-" list item (haven't tried prefixing every line with "*", but this is not an option for me). Furthermore, if I add more lines after the list they seem to be formatted incorrectly, and I also ask myself if being forced to insert an empty line before the bulletlist should be really necessary.