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
See screenshot below. If you have written a bullet list where a bullet consumes more than one line of text all lines that belongs to that bullet does not get left aligned except for the first line.
The text was updated successfully, but these errors were encountered:
BulletSpan isn't used by bypass. The bullet is actually being added in a very ugly way:
case LIST_ITEM:
builder.append(" ");
if (mOrderedListNumber.containsKey(element.getParent())) {
int number = mOrderedListNumber.get(element.getParent());
builder.append(Integer.toString(number) + ".");
mOrderedListNumber.put(element.getParent(), number + 1);
}
else {
builder.append(mOptions.mUnorderedListItem);
}
builder.append(" ");
An mOptions.mUnorderedListItem (defaults to •) is actually added as part of the item text which is not the same thing as what BulletSpan does. LeadingMarginSpan.Standard is used to add leading margin in bypass.
See screenshot below. If you have written a bullet list where a bullet consumes more than one line of text all lines that belongs to that bullet does not get left aligned except for the first line.
The text was updated successfully, but these errors were encountered: