I experienced a very strange behaviour: I wrote a custom function for PDF-Maker that sends the text of a custom field through Markdown (I used Parsedown). (The idea is that we can easily do some simple formatting in text fields in vtiger where we don't have any advanced editor.)
I have the following list in the text field:
* a
* b
* c
The output of Parsedown causes all items from the second line on to be rendered as a nested list:
<ul>
<li>a
<ul>
<li>b</li>
<li>c</li>
</ul></li>
</ul>
- a
- b
- c
Of course, if I paste the text direktly to parsedown, it gets rendered correctly:
<ul>
<li>a</li>
<li>b</li>
<li>c</li>
</ul>
What happens here? Any hint ...?