How do I handle ordered list? My own custom handler works fine for pre-Nougat devices. But since <li> tags are converted to `BulletSpan` by default by `Html.fromHtml` from Nougat, my custom handler’s `onHandleTag` don’t have a chance to participate in the rendering.
Also I can’t blindly replace BulletSpan with a custom numbered span since it might actually an unordered list. Do you have any solution for this?