On Wed Jun 27 05:12:47 2018, basinilya@gmail.com wrote:
Show quoted text> When converting a nested list like this:
>
> <ul>
> <li>a</li>
> <li>
> <ul>
> <li>aa</li>
> </ul>
> </li>
> </ul>
>
> I'm getting the following markup:
>
> * a
> * ** aa
>
> Expected:
>
> * a
> ** aa
This is because for the first list item the partial prefix is already printed.
The attached patch will suppress the full prefix for the first item in the list leaving just the last part of the prefix.
Unfortunately, after the change there's no simple way to print the space after the full prefix, so I had to disable it again.