Lists truncate after 8 levels (new issue)
I understand ( #115 ) that lists should just flatten out after 8 levels, but in fact the data is removed completely.
Test:
- test1
- test2
- test3
- test4
- test5
- test6
- test7
- test8
observed:
<ul>
<li>test1
<ul>
<li>test2
<ul>
<li>test3
<ul>
<li>test4
<ul>
<li>test5
<ul>
<li></li>
</ul></li>
</ul></li>
</ul></li>
</ul></li>
</ul></li>
</ul>
It actually looks like it truncates after 5 levels. Is that correct?
yes, it truncates after 5 levels. I recently ran into this. I use markdown to write wiki which is very complex, so I really need nested list more than 5 levels. Will you fix it ? or how can I change it in my local gem?
I modified it in my local gem , I know it not recommended. But I really need it.
If you want to submit your change that you made as a pull request, we can take a look at it. Thanks!
@evayuhz Sill have that fix? :crossed_fingers:
@evayuhz Yes it would really be appreciated if you could share it!
@evayuhz could you please share the fix?