Merge branch 'fix/markdown-lists' into feature/more-html-tags
This commit is contained in:
commit
da8933ec58
|
@ -163,8 +163,8 @@ public class HtmlParser{
|
|||
ssb.setSpan(si.span, si.start, ssb.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
|
||||
openSpans.remove(openSpans.size()-1);
|
||||
}
|
||||
if("li".equals(el.nodeName())) {
|
||||
if(node.nextSibling()!=null) ssb.append('\n');
|
||||
if("li".equals(el.nodeName()) && node.nextSibling()!=null) {
|
||||
ssb.append('\n');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue