mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-06 09:03:56 +02:00
Added ol/start support
This commit is contained in:
@@ -2117,7 +2117,11 @@ public class HtmlHelper {
|
||||
else
|
||||
ssb.setSpan(new BulletSpan(dp6, colorAccent, dp3), start, ssb.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
|
||||
else {
|
||||
// https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ol
|
||||
int index = 0;
|
||||
String s = parent.attr("start");
|
||||
if (!TextUtils.isEmpty(s) && TextUtils.isDigitsOnly(s))
|
||||
index = Integer.parseInt(s) - 1;
|
||||
for (Node child : parent.childNodes()) {
|
||||
if (child instanceof Element &&
|
||||
child.nodeName().equals(element.tagName())) {
|
||||
|
||||
Reference in New Issue
Block a user