Hi,
I don't know if there's info about this but I think I've stomped over a bug in nested lists treatment inside html comments (any text field).
When I create a list like this one:
- Green 2016
- Cover
- July 2016
- Dog
the treatment is OK, but if I create a list like the following one:
- Green 2016
- July 2016
It's not parsed OK and I end with something like this
because the html code looks like this:
Code:
<div><ol><li>Green 2016</li></ol><ul><li>Cover</li></ul><li>July 2016</li><ol><li>Dog</li></ol></div>
instead of
Code:
<div><ol><li>Green 2016</li><ul><li>Cover</li></ul><li>July 2016</li><ul><li>Dog</li></ul></ol></div>