Added ol/start support

This commit is contained in:
M66B 2020-09-02 09:13:35 +02:00
parent cd5d6f4c8f
commit 83b4c13284
1 changed files with 4 additions and 0 deletions

View File

@ -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())) {