mirror of https://github.com/M66B/FairEmail.git
Added ol/start support
This commit is contained in:
parent
cd5d6f4c8f
commit
83b4c13284
|
@ -2117,7 +2117,11 @@ public class HtmlHelper {
|
||||||
else
|
else
|
||||||
ssb.setSpan(new BulletSpan(dp6, colorAccent, dp3), start, ssb.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
|
ssb.setSpan(new BulletSpan(dp6, colorAccent, dp3), start, ssb.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
|
||||||
else {
|
else {
|
||||||
|
// https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ol
|
||||||
int index = 0;
|
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()) {
|
for (Node child : parent.childNodes()) {
|
||||||
if (child instanceof Element &&
|
if (child instanceof Element &&
|
||||||
child.nodeName().equals(element.tagName())) {
|
child.nodeName().equals(element.tagName())) {
|
||||||
|
|
Loading…
Reference in New Issue