[Bug]: Markdown description doesn't render (un)ordered lists correctly
What happened?
The Ordered / Unordered lists are both wrongly rendered, it's just a normal text, there is no ul / li, and thus no padding / margin.
What did you expect to happen?
And some real world example from one of my addons:
(left OLD, right NEW - bad)
Is there an existing issue for this?
- [x] I have searched the existing issues
┆Issue is synchronized with this Jira Task
FYI: This is an issue with how we pass the text to the Markdown library / how it parses the text. As band-aid in the meantime, if you create a new line between the text and list, it should behave as expected.
Thanks @chrstinalin ! This helps, although nested lists seems to be broken even with an extra line.
I've managed to fix the deep lists by using a different list syntax:
Example:
* level one
still level one
* level two
* level two
level one again - continues
(it's a star and 3 spaces)