Hello there!
I am using commonmark-py (based on the official commonmark.js) to convert raw markdown to html.
I have a file with the following markdown:
* level 1
** level 2
*** level 3
when I run it via
cmark test.md -o test.html
instead of getting the 3 levels of bullets I get:
<ul>
<li>line 1
** line 2
*** line 3</li>
</ul>
Do you know how I can fix this? Is there something wrong with my syntax?
Thanks a lot