In lists, in my case <ul>, when item texts are too long for one line, they wrap around to the next line.
But the next line is not indented as you would expect from HTML rendering:
Github Rendering:
- Long item text that wraps around. The second line should be indentend. Long item text that wraps around. The second line should be indentend.
- Item Item Item
I think this could be fixed by using a ParagraphStyle with TextIndent "restline" parameter set:
ParagraphStyle( textIndent = TextIndent( firstLine = ... restLine = restLineIndent ) )
In lists, in my case
<ul>,when item texts are too long for one line, they wrap around to the next line.But the next line is not indented as you would expect from HTML rendering:
Github Rendering:
I think this could be fixed by using a ParagraphStyle with TextIndent "restline" parameter set:
ParagraphStyle( textIndent = TextIndent( firstLine = ... restLine = restLineIndent ) )