Added support for decimal bullets

This commit is contained in:
M66B
2021-07-08 19:09:57 +02:00
parent 8372a939bb
commit 26fcb4e993

View File

@@ -2755,7 +2755,8 @@ public class HtmlHelper {
if (level > 0)
level--;
if (list == null || "ul".equals(list.tagName())) {
if (list == null || ("ul".equals(list.tagName()) &&
!(ltype != null && ltype.startsWith("decimal")))) {
// https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ul
Object ul;
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.P)