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