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
When my .rtf file contains list with sub-list it is not showing any tab space for the sub-list items. It is showing both the list and sub-list items as same.
For ex. In my .rtf file I've items as shown below.
First item
Second item
- sub-item
- sub-item2
and it is showing as
First item
Second item
sub-item
sub-item2
Could you please help me to fix this issue.
The text was updated successfully, but these errors were encountered:
I had a quick look at it and it seems that to fix this issue one needs to implement \ilvl from the 'Bullets and Numbering' section of the rtf spec. The easiest way would probably be to add a new char format handler for the control word which applies a margin to the relevant pap (see code starting at line 750 of rtf.js).
Hi,
When my .rtf file contains list with sub-list it is not showing any tab space for the sub-list items. It is showing both the list and sub-list items as same.
For ex. In my .rtf file I've items as shown below.
- sub-item
- sub-item2
and it is showing as
Could you please help me to fix this issue.
The text was updated successfully, but these errors were encountered: