You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this works fine for nested lists, but if I need the first item in the list to be with indent in quill editor it looks great but the html from the convertor looses the indent
quill would look like this: <ol><li class="ql-indent-2">list with indent</li></ol>
and the convertor would look like this: <ol><li>list with indent</li></ol>
I guess the solution would be to add an option for the convertor to not group lists and to not set the indent to 0
like asked in this issue: #60
The text was updated successfully, but these errors were encountered:
is there a way to change the html for lists with indent?
in quilljs the html generated from lists with indent looks like this:
the same delta in the convertor looks like this:
this works fine for nested lists, but if I need the first item in the list to be with indent in quill editor it looks great but the html from the convertor looses the indent
quill would look like this:
<ol><li class="ql-indent-2">list with indent</li></ol>
and the convertor would look like this:
<ol><li>list with indent</li></ol>
I guess the solution would be to add an option for the convertor to not group lists and to not set the indent to 0
like asked in this issue: #60
The text was updated successfully, but these errors were encountered: